Guest User

Untitled

a guest
Dec 10th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <table class="programm">
  2. <?php $args = array( 'post_type' => 'programm', 'orderby' => 'date', 'order' => 'ASC' );
  3. $loop = new WP_Query( $args );
  4. while ( $loop->have_posts() ) : $loop->the_post();
  5. $programmDetails = get_post_meta($post->ID,'programmDetails',true);
  6. ?>
  7. <?php foreach((array)$programmDetails as $pD ){
  8. if (isset($pD['date']) || isset($pD['desc']) ): ?>
  9. <tr>
  10. <td><?php echo $pD['date'] ?></td>
  11. <td><?php echo $pD['desc'] ?></td>
  12. </tr>
  13. <?php endif; } ?>
  14. <?php endwhile; ?>
  15. </table>
Add Comment
Please, Sign In to add comment