Forums

The Events Calendar
[resolved] Need to hide "Events" category in blog lists (3 posts)

  1. Adwiz
    Member
    Posted 1 year ago #

    Since the Events calendar uses blog posts tagged with the "Events" category to display events, I don't want those posts to show up in other posts such as the actual blog listings or the home page.

    How can I modify the PHP handler that calls up posts to ignore any posts that have the Events category?

  2. idealien
    Member
    Posted 1 year ago #

    Inside the loop for whatever template you are working with, you can wrap the following conditional statement:

    <?php while ( have_posts() ) : the_post();
         if (!is_event( get_the_ID() ) ) :
             //Do whatever loop display you want non-events to have.
         endif;
    
    endwhile; ?>
  3. Adwiz
    Member
    Posted 1 year ago #

    Thanks!

Topic Closed

This topic has been closed to new replies.

About this Plugin

About this Topic