Created
September 2, 2024 14:03
-
-
Save wp-seopress/54e66d4131f498085f20c4b8827898a4 to your computer and use it in GitHub Desktop.
Filter Google News Name for XML News Sitemap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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