Remove Shop Page from SiteMap
-
How to prevent Woocommerce shop page appearing on product-sitemap.xml?
I noindex and tried following code with functions.php but nothing removes it from product sitemap.
add_filter( ‘wpseo_sitemap_post_type_archive_link’, ‘my_wpseo_cpt_archive_link’, 10, 2);
function my_wpseo_cpt_archive_link( $link, $post_type ) {
// Disable product/post archives in the sitemaps
if ( $post_type === ‘product’ )
return false;
return $link;
}Can you help me please!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Remove Shop Page from SiteMap’ is closed to new replies.