Created
February 17, 2016 19:35
-
-
Save stompweb/95ccfe0e9282437e06a7 to your computer and use it in GitHub Desktop.
Don't load Yoast
This file contains 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
<?php | |
function rmt_exclude_yoast_resource_centre( $plugins ) { | |
if ('' == sanitize_text_field($_GET['op'])) { | |
return $plugins; | |
} | |
$key = array_search('wordpress-seo/wp-seo.php', $plugins); | |
unset( $plugins[$key] ); | |
return $plugins; | |
} | |
add_filter( 'option_active_plugins', 'rmt_exclude_yoast_resource_centre' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment