Disable 6.4 update nag message
-
If you are planning to stick with the 6.4 branch, but the nag message bugs you, add this snippet to functions.php in your child theme folder.
function filter_plugin_updates( $value ) {
unset( $value->response[‘theme-my-login/theme-my-login.php’] );
return $value;
}
add_filter( ‘site_transient_update_plugins’, ‘filter_plugin_updates’ );
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘Disable 6.4 update nag message’ is closed to new replies.