NO, I don’t use Version Control Systems.
As experiment I include must-use plugin:
/*
Plugin Name: Auto Update
Description: A plugin for control updates
Version: 1.0
Author: llgruff
*/
add_filter('automatic_updates_is_vcs_checkout', '__return_false', 1);
add_filter('auto_update_core', '__return_true');
add_filter('auto_update_theme', '__return_true');
add_filter('auto_update_translation', '__return_true');
add_filter('auto_core_update_send_email', '__return_true');
Only “not-standart” that I made — renamed the WordPress wp-content
directory in wp-config.php
:
define( 'WP_CONTENT_DIR', $_SERVER['DOCUMENT_ROOT'] . '/main' );
define( 'WP_CONTENT_URL', 'https://'. $_SERVER['HTTP_HOST'] . '/main' );
define( 'WP_PLUGIN_DIR', $_SERVER['DOCUMENT_ROOT'] . '/main/plugins' );
define( 'WP_PLUGIN_URL', 'https://'. $_SERVER['HTTP_HOST'] . '/main/plugins' );
Are you have WP MultiSite?
Is the automatic update works?