wrong date in post loop
-
Hello,
as I try to loop the upcoming events like this:<?php $loop = new WP_Query( array( post_type' => 'mep_events', 'posts_per_page' => 3 ) ); ?> <?php while ( $loop->have_posts() ) : $loop->the_post(); ?> <h2><?php the_title(); ?></h2> <span><?php do_action('mep_event_date'); ?></span> <?php endwhile; wp_reset_query(); ?>what i get is that, instead of event date, I get CURRENT date.
Is there something i’m doing wrong?Thanks a lot, regards.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘wrong date in post loop’ is closed to new replies.