{"id":7887,"date":"2021-02-19T17:06:27","date_gmt":"2021-02-19T16:06:27","guid":{"rendered":"https:\/\/www.welaunch.io\/en\/?p=7887"},"modified":"2021-02-19T17:06:27","modified_gmt":"2021-02-19T16:06:27","slug":"no-index-hidden-woocommerce-products-from-yoast","status":"publish","type":"post","link":"https:\/\/www.welaunch.io\/en\/2021\/02\/no-index-hidden-woocommerce-products-from-yoast\/","title":{"rendered":"No index hidden WooCommerce products from Yoast"},"content":{"rendered":"<p>WooCommerce Products with the visibility status hidden (excluded from catalog) are still indexed by the Yoast SEO tool. TO remove them from the automatically generated Sitemaps and set the index status to &#8220;noindex, nofollow&#8221; add the following 2 functions to your functions.php<\/p>\n<pre>add_filter( 'wpseo_sitemap_entry', 'we_remove_hidden_products', 99, 3);\r\nfunction we_remove_hidden_products($url, $type, $post) {\r\n\tif($post-&gt;post_type == 'product' &amp;&amp; is_object_in_term( $post-&gt;ID, 'product_visibility', 'exclude-from-catalog')){\r\n\t\treturn '';\r\n\t}\r\n\treturn $url;\r\n}\r\n\r\nadd_filter('wpseo_robots', 'we_noindex_hidden_products', 10, 2);\r\nfunction we_noindex_hidden_products($robots, $indexable) {\r\n\t\r\n\tif(!isset($indexable-&gt;model)) {\r\n\t\treturn $robots;\r\n\t}\r\n\r\n\tif(!isset($indexable-&gt;model-&gt;object_id)) {\r\n\t\treturn $robots;\r\n\t}\r\n\t\r\n\tif(is_object_in_term( $indexable-&gt;model-&gt;object_id, 'product_visibility', 'exclude-from-catalog')){\r\n\t\t$robots = 'noindex, nofollow';\r\n\r\n\t}\r\n\treturn $robots;\r\n}\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>WooCommerce Products with the visibility status hidden (excluded from catalog) are still indexed by the Yoast SEO tool. TO remove them from the automatically generated Sitemaps and set the index status to &#8220;noindex, nofollow&#8221; add the following 2 functions to your functions.php add_filter( &#8216;wpseo_sitemap_entry&#8217;, &#8216;we_remove_hidden_products&#8217;, 99, 3); function we_remove_hidden_products($url, $type, $post) { if($post-&gt;post_type == &#8216;product&#8217;&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[4],"tags":[],"class_list":["post-7887","post","type-post","status-publish","format-standard","hentry","category-woocommerce"],"_links":{"self":[{"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/posts\/7887","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/comments?post=7887"}],"version-history":[{"count":1,"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/posts\/7887\/revisions"}],"predecessor-version":[{"id":7889,"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/posts\/7887\/revisions\/7889"}],"wp:attachment":[{"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/media?parent=7887"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/categories?post=7887"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/tags?post=7887"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}