Last active
March 9, 2022 12:17
-
-
Save deeman/3c875f03e5a7d693181cbc3e2eab2bea to your computer and use it in GitHub Desktop.
(SEO) WooCommerce "No Index, No Follow" on cart, order, checkout- pages then using YOAST!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function woo_seo_noindex_special_pages () { | |
global $post; | |
$woocommerce_pages = array('cart', 'checkout', 'order-received', 'order-tracking', | |
'my-account', 'logout', 'lost-password', 'mijireh-secure-checkout'); | |
$slug = get_post($post)->post_name; | |
if (in_array($slug, $woocommerce_pages)) { | |
echo '<meta name="robots" content="noindex,follow"/>' . "\n"; | |
} | |
} | |
add_action('wpseo_head', 'woo_seo_noindex_special_pages'); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment