Hide Plugin Update Notification Wordpress

[Solved] Hide Plugin Update Notification Wordpress | Php - Code Explorer | yomemimo.com
Question : hide plugin update notification wordpress

Answered by : mehedi-hasan-khfto59a078g

function filter_plugin_updates( $value ) { unset( $value->response['akismet/akismet.php'] ); return $value;
}
add_filter( 'site_transient_update_plugins', 'filter_plugin_updates' );

Source : https://wordpress.stackexchange.com/questions/20580/disable-update-notification-for-individual-plugins | Last Update : Sat, 19 Jun 21

Answers related to hide plugin update notification wordpress

Code Explorer Popular Question For Php