kmaroff
4/3/2020 - 3:23 PM

Отключаем Yoast на нужных страницах целиком или по частям

// Целиком
add_action('template_redirect','remove_wpseo');

function remove_wpseo(){
    if (is_archive('calendar-pods')) {
        global $wpseo_front;
            if(defined($wpseo_front)){
                remove_action('wp_head',array($wpseo_front,'head'),1);
            }
            else {
              $wp_thing = WPSEO_Frontend::get_instance();
              remove_action('wp_head',array($wp_thing,'head'),1);
            }
    }
}

// По частям
add_filter( 'wpseo_opengraph_url', '__return_false' );
add_filter( 'wpseo_canonical', '__return_false' );