Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wp-seopress/54e66d4131f498085f20c4b8827898a4 to your computer and use it in GitHub Desktop.
Save wp-seopress/54e66d4131f498085f20c4b8827898a4 to your computer and use it in GitHub Desktop.
Filter Google News Name for XML News Sitemap
add_filter('seopress_sitemaps_xml_news_name', 'sp_sitemaps_xml_news_name');
function sp_sitemaps_xml_news_name($name) {
$name = 'My Google News Name';
return $name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment