ControlledChaos
5/7/2015 - 9:22 AM

Disable Auto Updates in wp-config

Disable Auto Updates in wp-config

<?php

// Disables all core updates:
define( 'WP_AUTO_UPDATE_CORE', false ); 

// Enables all core updates, including minor and major:
define( 'WP_AUTO_UPDATE_CORE', true );

// Enables core updates for minor releases (default):
define( 'WP_AUTO_UPDATE_CORE', 'minor' );

?>

Disable Auto Updates in wp-config

WordPress Snippet