mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
11 lines
273 B
Text
11 lines
273 B
Text
function sitemap_exclude_authors( $users ) {
|
|
return array_filter( $users, function( $user ) {
|
|
if ( $user->ID === 5 ) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
} );
|
|
}
|
|
|
|
add_filter( 'wpseo_sitemap_exclude_author', 'sitemap_exclude_authors' );
|