Last active
April 3, 2020 15:38
-
-
Save kmaroff/1672304bf538dcf04b5387c2d9ddf999 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Целиком | |
| 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