Skip to content

Instantly share code, notes, and snippets.

@stompweb
Created February 17, 2016 19:35
Show Gist options
  • Save stompweb/95ccfe0e9282437e06a7 to your computer and use it in GitHub Desktop.
Save stompweb/95ccfe0e9282437e06a7 to your computer and use it in GitHub Desktop.
Don't load Yoast
<?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