Tuesday, March 21, 2023

Set local timezone in wordpress programatically

Set local timezone in wordpress programatically:

add_action('wp_loaded', 'animed_time_zone_function');
function animed_time_zone_function() {
    $timezone_identifier = 'Asia/Dhaka';
    date_default_timezone_set($timezone_identifier);
}

Happy coding!

No comments:

Post a Comment

Change priority of dual boot OS

Change priority of dual boot OS  (Windows and Linux): Go to your Linux OS, install Grub customizer. Then change priority by up and down arro...