get_template_part() – post-meta not working?
Try globalizing $post inside of event-item.php. Also: be sure to call wp_reset_postdata() after you close your $loop while loop. e.g.: <!– event-item.php –> <?php // globalize $post global $post; ?> <div id=”event-<?php the_ID(); ?>” <?php post_class(); ?>> <div class=”event-date”><?php echo $event_date; ?></div> <div class=”event_time”><?php echo $event_time; ?></div> <div class=”event-speaker”><?php echo $event_speaker; ?></div> <div class=”event-title”><a href=”https://wordpress.stackexchange.com/questions/49285/<?php … Read more