Disable wordpress plugin update notification

We can disable wordpress plugin update notification within 2 lines of code. Just add the below code in 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

Popular posts from this blog

Send email from xampp localhost

Modify item price in cart after placing order using sales_quote_add_item

Convert long url to short url using tinyurl api