Created
May 9, 2016 05:43
-
-
Save rianrietveld/163398144f2053cfffca239737bad89e to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
// 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