Skip to content

Instantly share code, notes, and snippets.

@rianrietveld
Created May 9, 2016 05:43
Show Gist options
  • Save rianrietveld/163398144f2053cfffca239737bad89e to your computer and use it in GitHub Desktop.
Save rianrietveld/163398144f2053cfffca239737bad89e to your computer and use it in GitHub Desktop.
<?php
// disable yoast seo nag messages
// via https://wordpress.org/support/topic/turn-off-yoast-seo-has-been-updated-to-version-message
if ( class_exists( 'Yoast_Notification_Center' ) ) {
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