Hide created product in Yoast feed
1 2 3 4 |
//don't show product in Yoast feed! add_action('wpo_create_custom_product', function($post_id, $product){ update_post_meta($post_id, "_yoast_wpseo_meta-robots-noindex", 1); },10,2); |
1 2 3 4 |
//don't show product in Yoast feed! add_action('wpo_create_custom_product', function($post_id, $product){ update_post_meta($post_id, "_yoast_wpseo_meta-robots-noindex", 1); },10,2); |