ID, 'start_date_time', true );
$start_date = date( 'Y-m-d', strtotime( $start_date_time ) );
$start_time = date_i18n( get_option('time_format'), strtotime( $start_date_time ) );
if( $day == $start_date ) {
$all_day = get_post_meta( $event->ID, 'all_day_event', true );
if( $all_day ) {
printf( '
%s
', __( 'All Day', 'another-events-calendar' ) );
} else {
printf( '
%s
', $start_time );
}
} else {
printf( '
%s
', __( 'This is a multi-day event starts earlier to this date.', 'another-events-calendar' ) );
}
?>
ID, 'parent', true ); ?>
0 ) : ?>
()
ID, 'aec_categories' );
if( ! empty( $categories ) ) {
$meta = array();
foreach( $categories as $category ) {
$meta[] = sprintf( '
%s', aec_category_page_link( $category ), $category->name );
}
echo '
'.implode( ', ', $meta ).'
';
}
}
?>
ID, 'venue_id', true );
if( $venue_id > 0 && is_string( get_post_status( $venue_id ) ) ) : ?>
post_content, 20 ) ); ?>
ID, 'cost', true );
if( $cost > 0 ) printf( '
%s
', aec_currency_filter( aec_format_amount( $cost ) ) );
?>