Disable wordpress plugin update notification
We can disable wordpress plugin update notification within 2 lines of code. Just add the below code in
[code lang="php"]
remove_action( 'load-update-core.php', 'wp_update_plugins' );
add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) );
[/code]
functions.php
.[code lang="php"]
remove_action( 'load-update-core.php', 'wp_update_plugins' );
add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) );
[/code]
Comments
Post a Comment