Skip to content

Instantly share code, notes, and snippets.

@kmaroff
Last active April 3, 2020 15:38
Show Gist options
  • Select an option

  • Save kmaroff/1672304bf538dcf04b5387c2d9ddf999 to your computer and use it in GitHub Desktop.

Select an option

Save kmaroff/1672304bf538dcf04b5387c2d9ddf999 to your computer and use it in GitHub Desktop.
// Целиком
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' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment