Skip to content

Instantly share code, notes, and snippets.

@nielsvr
Created March 9, 2016 11:34
Show Gist options
  • Save nielsvr/c173f810e39c1c2ce297 to your computer and use it in GitHub Desktop.
Save nielsvr/c173f810e39c1c2ce297 to your computer and use it in GitHub Desktop.
Remove Yoast SEO upgrade notices
<?php
// add to your functions.php
add_action('admin_init', 'theme_disable_yoast_notifications');
function theme_disable_yoast_notifications() {
if ( is_plugin_active( 'wordpress-seo/wp-seo.php' ) ) {
remove_action( 'admin_notices', array( Yoast_Notification_Center::get(), 'display_notifications' ) );
remove_action( 'all_admin_notices', array( Yoast_Notification_Center::get(), 'display_notifications' ) );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment