Skip to content

Instantly share code, notes, and snippets.

@wp-seopress
Last active November 8, 2023 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wp-seopress/5967c356f800e0e095d804f4d9cf8325 to your computer and use it in GitHub Desktop.
Save wp-seopress/5967c356f800e0e095d804f4d9cf8325 to your computer and use it in GitHub Desktop.
Filter post title in HTML sitemap
function sp_sitemaps_html_post_title($post_title) {
//do your sutff
return $post_title;
}
add_filter('seopress_sitemaps_html_post_title', 'sp_sitemaps_html_post_title');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment