File: /var/www/html/nsci/wp-content/plugins/penci-shortcodes/inc/penci_date.php
<?php
/* ------------------------------------------------------- */
/* Date
/* ------------------------------------------------------- */
if ( ! function_exists( 'penci_penci_date_shortcode' ) ) {
function penci_penci_date_shortcode( $atts, $content ) {
extract( shortcode_atts( array(
'format' => 'l, F j Y',
'timezone' => '' /* Timezone supported: https://www.php.net/manual/en/timezones.php */
), $atts ) );
$return = '';
if( ! $format ): $format = 'l, F j Y'; endif;
if( ! $timezone ){
$return = date( $format );
} else {
$date = new DateTime("now", new DateTimeZone( $timezone ) );
$return = $date->format( $format );
}
return $return;
}
}