skip to Main Content

Disable WordPress Yoast SEO on Single Page

I'm attempting to disable the Wordpress Yoast SEO on a single page because it's conflicting with a different plugin. I tried following this StackOverflow question, adding this code to functions.php: add_action('template_redirect','remove_wpseo'); function remove_wpseo(){ if ( is_page(944)) { global $wpseo_front; remove_action(…

VIEW QUESTION
Back To Top
Search