Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wp-seopress/88145048e9834131cb616a4b4c8c7d24 to your computer and use it in GitHub Desktop.

Select an option

Save wp-seopress/88145048e9834131cb616a4b4c8c7d24 to your computer and use it in GitHub Desktop.
Filter the generated video sitemap content of a post
add_filter( 'seopress_pro_video_sitemap_builder_content', 'sp_pro_video_sitemap_builder_content', 10, 2 );
function sp_pro_video_sitemap_builder_content( $buffer, $post_id ) {
// Adjust the <video:video> entries generated for this post.
return $buffer;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment