WordPress zichzelf laten updaten

V. Er is een nieuwe versie van WordPress (3.8.3) en ik krijg een geautomatiserede vraag van mijn hosting bedrijf (Siteground) met de vraag om up te daten. Kan ik die update niet automatiseren?

A. Sinds 3.7 update WordPress zichzelf. Als dat niet is wat en hoe je wil, kan je ervoor kiezen om bv.

  • automatische updates uit te schakelen, door aan wp-config.php deze lijn toe te voegen:
    define( ‘AUTOMATIC_UPDATER_DISABLED’, true );
  • automatische updates van de core in te schakelen door aan wp-config.php deze lijn toe te voegen:
    define( ‘WP_AUTO_UPDATE_CORE’, false );
    waarbij andere mogelijkheden naast false zijn true (alle updates ingeschakeld) of ‘minor’ (allen kleine updates toelaten om mogelijke problemen met plugins te vermijden)

Zie: Configuring Automatic Background Updates - http://codex.wordpress.org/Configuring_Automatic_Background_Updates

Ook interessant:

How To Enable Automatic Updates In Your WordPress Blog – http://justwp.org/enable-automatic-updates-wordpress-blog/
How to Enable Automatic Updates in WordPress for Major Releases – http://www.wpbeginner.com/wp-tutorials/how-to-enable-automatic-updates-in-wordpress-for-major-releases/