If you face local date and time issue please add the below code in the theme.
Theme file path: – includes/autoload.php
Code:- /* 1st code for timezon update */
function my_switch_theme() {
$domain = $_SERVER[‘HTTP_HOST’];
$ip = gethostbyname($domain);
$ipInfo = file_get_contents(‘http://ip-api.com/json/’Â . $ip);
$ipInfo = json_decode($ipInfo);
$timezone = $ipInfo-timezone;
date_default_timezone_set($timezone);
update_option( ‘timezone_string’, $timezone );
}
add_action( ‘wp_loaded’, ‘my_switch_theme’);