getdave / Tanlinell

Boilerplate Wordpress theme for rapid development of new WP themes. Based on the great work of the _s ("Underscore") theme.
GNU General Public License v2.0
6 stars 2 forks source link

Automatic updates #222

Closed neilberry001 closed 10 years ago

neilberry001 commented 10 years ago

// ==========================================================================
// CONFIGURE AUTOMATIC UPDATES
// ==========================================================================
//ensure minor
define( 'WP_AUTO_UPDATE_CORE', 'minor' );
function always_return_false_for_vcs( $checkout, $context ) {
   return false;
}
add_filter( 'automatic_updates_is_vcs_checkout', 'always_return_false_for_vcs', 10, 2 );

Adding this to funcitons.php will allow vcs controlled sites to get the updates and also hard defines the default of minor