How to disable Yoast SEO in specific page?
i'm trying to hide the title tag of the head of my template. I'm using this code: add_action( 'template_redirect', 'remove_wpseo' ); function remove_wpseo() { if ( is_single ( 123456 ) ) { global $wpseo_front; if ( defined( $wpseo_front ) )…