Guest User

Untitled

a guest
Nov 20th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. global $post;
  3. $posts = get_field( 'relationship' );
  4. if( $posts ):
  5.  
  6. foreach( $posts as $p ):
  7. setup_postdata( $p );
  8.  
  9. // Display the date of the event
  10. $p_event = tribe_get_start_time ( $p->ID, 'j F à H h i' );
  11.  
  12. if ( $p_event ) {
  13. echo $p_event;
  14. }
  15. else '';
  16. endforeach;
  17. endif;
  18. ?>
Add Comment
Please, Sign In to add comment