Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Where is this value specified? Where to dig?
add_action( 'wp_initialize_site', 'wpdocs_action_wp_initialize_site', 900 );
/**
* Fires when a site's initialization routine should be executed.
*
* @param WP_Site $new_site New site object.
*/
function wpdocs_action_wp_initialize_site( WP_Site $new_site ) : void {
switch_to_blog( $new_site->blog_id );
update_option('gmt_offset','1');
//update_option('gmt_offset','1.5');
//update_option('gmt_offset','2');
//update_option('gmt_offset','2.5');
//update_option('gmt_offset','3'); //установлено по умолчанию
restore_current_blog();
}
Where exactly do you want to change the time? Before getting the date, you can define a default timezone:
date_default_timezone_set( 'Europe/Samara' );
$date = date( 'd-m-Y H:i:s' );
var_dump( $date );
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question