Skip to content

Instantly share code, notes, and snippets.

@blobaugh
Created December 17, 2015 19:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blobaugh/5365f241fd29914f2475 to your computer and use it in GitHub Desktop.
Save blobaugh/5365f241fd29914f2475 to your computer and use it in GitHub Desktop.
Prevents WP SEO from requesting updates
add_filter( 'site_transient_update_plugins', 'wds_wp_seo_no_update' );
function wds_wp_seo_no_update( $value ) {
if ( empty( $value ) || empty( $value->response['wordpress-seo/wp-seo.php'] ) ) {
return $value;
}
unset( $value->response['wordpress-seo/wp-seo.php'] );
return $value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment