Nastavení automatické aktualizace

WordPress 3.7 introduced automatic upgrades. Maintenance and security updates are applied in the background when a patch becomes available and someone visits your site. By default, the process only applies when updating minor versions — such as 3.7.0 to 3.7.1 — and takes no longer than 25 seconds.

Automated updates are especially risky if you:

– use a large number of dubious plug-ins or complex third-party themes
– want to control and manage updates yourself, or
– have an especially nervous disposition!

How to enable major release updates

/—code php
define(‚WP_AUTO_UPDATE_CORE‘, true);
\—

To stop the autoupdates of the WordPress core

/—code php
define( ‚WP_AUTO_UPDATE_CORE‘, false );
\—

How to enable plugins updates

/—code php
add_filter( ‚auto_update_plugin‘, ‚__return_true‘ );
\—

How to enable themes updates

/—code php
add_filter( ‚auto_update_theme‘, ‚__return_true‘ );
\—

Then enable the plugins updates

/—code php
add_filter( ‚auto_update_plugin‘, ‚__return_true‘ );
\—

How to completely disable the WordPress auto updates

/—code php
define( ‚AUTOMATIC_UPDATER_DISABLED‘, true );
\—

„WordPress Auto Updates How To »“:http://www.siteground.com/tutorials/wordpress/auto-update.htm

„How to Configure Automatic Updates in WordPress »“:http://www.sitepoint.com/configure-automatic-updates-wordpress/

„How to exclude plugins from getting automatically updated »“:http://wordpress.stackexchange.com/questions/131394/how-do-i-exclude-plugins-from-getting-automatically-updated