Created
August 17, 2019 10:04
-
-
Save macgraphic/df40d8260f1ea037ecd6ee3756219dc4 to your computer and use it in GitHub Desktop.
template output for ACF date
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p class="event-date-time"> | |
<?php esc_url( svg_icon( 'calendar' ) ); ?> | |
<?php | |
$date = get_field( 'event_date' ); | |
if ( $date ) : ?> | |
<?php echo esc_html( $date ); ?>, | |
<?php endif; ?> | |
<?php | |
$starttime = get_field( 'event_start_time' ); | |
if ( $starttime ) : ?> | |
<?php echo esc_html( $starttime ); ?> | |
<?php endif; ?> | |
<?php | |
$endtime = get_field( 'event_end_time' ); | |
if ( $endtime ) : ?> | |
- <?php echo esc_html( $endtime ); ?> | |
<?php endif; ?> | |
</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment