Skip to content

Instantly share code, notes, and snippets.

@yxod
Created November 3, 2020 12:30
Show Gist options
  • Save yxod/eae52bdfeb10e605623065ce8735f06c to your computer and use it in GitHub Desktop.
Save yxod/eae52bdfeb10e605623065ce8735f06c to your computer and use it in GitHub Desktop.
Remove canonical from singular custom post types
function remove_canonical() {
if ( is_singular( 'voprosy' ) || is_singular( 'filialy') || is_singular( 'uslugi' ) ){
add_filter( 'wpseo_canonical', '__return_false', 10, 1 );
}
}
add_action('wp', 'remove_canonical');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment