mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
5 lines
208 B
Text
5 lines
208 B
Text
add_filter( 'wp_sitemaps_post_types', 'remove_post_type_from_wp_sitemap' );
|
|
function remove_post_type_from_wp_sitemap( $post_types ) {
|
|
unset( $post_types['mailpoet_page'] );
|
|
return $post_types;
|
|
}
|