mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
6 lines
170 B
Text
6 lines
170 B
Text
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;
|
|
}
|