Viewing 1 replies (of 1 total)
  • Thread Starter Zeliha Canderengul

    (@zelihacanderengul)

    I solved the problem. Paste the code into functions.php.

    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;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘product-sitemap.xml homepage link display issue.’ is closed to new replies.