Skip to content

Instantly share code, notes, and snippets.

@wpscholar
Created March 31, 2014 20:50
Show Gist options
  • Save wpscholar/9901917 to your computer and use it in GitHub Desktop.
Save wpscholar/9901917 to your computer and use it in GitHub Desktop.
Properly set the timezone in WordPress
<?php
/**
* Properly set the timezone in WordPress
*
* @param string $timezone
*/
public static function set_timezone( $timezone = '' ) {
if ( empty( $timezone ) ) {
$timezone = get_option( 'timezone_string', date_default_timezone_get() );
}
date_default_timezone_set( $timezone );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment