---
title: Filter content used to find new video for xml video sitemap
url: "https://www.seopress.org/support/hooks/filter-content-used-to-find-new-video-for-xml-video-sitemap/"
lang: en-US
updated: 2025-08-13
hook_name: seopress_pro_video_sitemap_content
required_version: 6.5, 9.1
---

# Filter content used to find new video for xml video sitemap

- **Hook name:** `seopress_pro_video_sitemap_content`
- **Required version:** 6.5, 9.1

```php
add_filter('seopress_pro_video_sitemap_content', 'sp_pro_video_sitemap_content', 10, 2);
function sp_pro_video_sitemap_content($content, $post_id) {
    //eg. to add a custom field, replace 'my_custom_field_name' by your own
    $content .= get_post_meta($post_id, 'my_custom_field_name', true);
    return $content;
}
```

Source: [https://gist.github.com/wp-seopress/9781ce213b29d270b010a53bbc75ca1c](https://gist.github.com/wp-seopress/9781ce213b29d270b010a53bbc75ca1c)



