mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://make.wordpress.org/core/2020/07/22/new-xml-sitemaps-functionality-in-wordpress-5-5/
12 lines
202 B
Text
12 lines
202 B
Text
add_filter(
|
|
'wp_sitemaps_add_provider',
|
|
function( $provider, $name ) {
|
|
if ( 'users' === $name ) {
|
|
return false;
|
|
}
|
|
|
|
return $provider;
|
|
},
|
|
10,
|
|
2
|
|
);
|