Disable notification for plugin update

PHOTO EMBED

Thu Jul 06 2023 11:54:40 GMT+0000 (Coordinated Universal Time)

Saved by @gshailesh27

// disable notification for plugin update

function filter_plugin_updates( $value ) {
    unset( $value->response['wps-hide-login/wps-hide-login.php'] );
    unset( $value->response['wpide/wpide.php'] );
    return $value;
}
add_filter( 'site_transient_update_plugins', 'filter_plugin_updates' );
content_copyCOPY