How do you stop minor WordPress updates?
-
Hi there,
My WordPress site keeps automatically updating to version 5.2.5. This happens every day at around 6:48pm GMT. The issue is it breaks the Media page in the admin section so I can’t upload images. Every time it updates I have to load a backup manually, I overwrite all the files and database to put it back to how it was before the update.
To try and stop it auto updating I have added the line below to wp-config.php
define( ‘automatic_updater_disabled’, true );and have added the lines below to the functions.php
add_filter( ‘auto_update_plugin’, ‘__return_false’ );
add_filter( ‘auto_update_theme’, ‘__return_false’ );It still keeps auto updating every day, how do I stop it?
- The topic ‘How do you stop minor WordPress updates?’ is closed to new replies.