Stop automatic theme update

Hello,

I would like to deactivate the automatic theme updates.
Is this possible, if so how?

thanks

Hey @l_eckardt,

Thanks for reaching out!

If you want to disable the automatic updates for WordPress core, please add this code in your wp-config.php file.

define( 'WP_AUTO_UPDATE_CORE', false );

If you want to disable the auto updates for the plugins and themes, you can add the code below in your child theme functions.php.

Plugins:
add_filter( 'auto_update_plugin', '__return_false' );

Themes:
add_filter( 'auto_update_theme', '__return_false' );

Hope that helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.