Using the WordPress Loop to find Events with a Catergory
-
I am trying to loop through the events and find a event with the category of ‘featured_event’ and post the content of the event. Here is my code:
<?php $eventArgs = array( 'post_type' => 'ai1ec_event', 'category_name' => 'featured_event' ); $eventQuery = new WP_Query( $eventArgs ); if ($eventQuery->have_posts()) : while ($eventQuery->have_posts()) : $eventQuery->the_post(); ?> <p><?php the_content(); ?></p> <?php endwhile; endif; wp_reset_postdata(); ?>
(Hopefully the code shows up all good)
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Using the WordPress Loop to find Events with a Catergory’ is closed to new replies.