remove autoupdate wordpress

To disable auto-updates in WordPress, follow these steps:

  1. Access your WordPress site's files: You can do this using an FTP client or through your hosting provider's file manager.

  2. Locate the wp-config.php file: This file is located in the root directory of your WordPress installation.

  3. Open the wp-config.php file: Use a text editor to open the wp-config.php file.

  4. Add a constant to disable auto-updates: Inside the wp-config.php file, add the following line of code:

php define( 'AUTOMATIC_UPDATER_DISABLED', true );

This constant will disable all automatic updates for WordPress core, plugins, and themes.

  1. Save the changes: After adding the code, save the wp-config.php file.

By following these steps, you will disable auto-updates in WordPress. This means that WordPress, plugins, and themes will no longer update automatically, and you will need to manually update them when new versions are available.

Please note that disabling auto-updates can have security implications, as updates often include security patches. It is important to regularly check for updates and manually apply them to keep your WordPress site secure.