Event Single Conditional Wrapper – Not Working?
-
<?php if (is_category() || is_tag()) { ?> <h1 class="header-title"><?php the_archive_title();?></h1> <?php } elseif ( tribe_is_event() && is_single() ) { ?> <h1 class="header-title">Events</h1> <?php } else { ?> <h1 class="header-title"><?php the_title(); ?></h1> <?php } ?>
I followed the “Themer’s Guide” and setup the conditional wrapper using the documented code. However, it does not appear to be working. Instead of displaying the (static) title of “Events”, it doesn’t display anything.
Has the conditional wrapper changed?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Event Single Conditional Wrapper – Not Working?’ is closed to new replies.