Hi there,
I used the following code to create a current date and time shortcode:
// Date Shortcode
add_shortcode( 'current_date', 'func_current_date' );
function func_current_date(){
return date('l, F j, Y');
}
But It pulls up one time zone. Can this be set to show the time zone of the current user?
thanks!