Disable auto update plugins

Many times we have some modifications in plugin information and their code. But when these plugin's update found in WordPress. we couldn't update it. because we've some changes made in these.

we found some ideas to ignore plugin updates in our wp-admin.

Simply add the below function to your theme's function file and find the plugin's main file you want to disable.

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

After adding this function. And refresh your plugin page in wp-admin now you can see the plugin update is removed.

Comments

Popular posts from this blog

Latest free website directory list 2022.

Some best utility plugins for WordPress website

How to Resolve the WordPress Error Establishing a Database Connection