Can Event Archives be put in with Normal Post Archives
-
So what I’m trying to do is have it so my event’s are also seen on post archive pages. For example, if I go to my archive at https://www.example.com/2016/04/28/ I will see my posts from that day but I want to also be able to have it so my events that are being held on that day will also display.
I don’t know php to well but I tried to force it on the archive page to see how it would look. I used this code to put it with my other posts but since its on the archive.php and i’m just pasting all events onto it, it can’t sort by event date. Maybe you know of a way to add it to the archive? Thanks.
<?php/* if(function_exists('tribe_get_events')){ tribe_get_events(); ?> <?php $eventpost = tribe_get_events(); if ($eventpost) { ?> <?php foreach($eventpost as $post) { ?> <li class="infinite-post3"> <a href="<?php the_permalink(); ?>" rel="bookmark"> <div class="home-list-img"> <?php if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) ) { ?> <?php the_post_thumbnail('medium-thumb'); ?> <?php } ?> <?php if(get_post_meta($post->ID, "mvp_video_embed", true)): ?> <div class="video-button"> <img src="<?php echo get_template_directory_uri(); ?>/images/video-but.png" alt="<?php the_title(); ?>" /> </div><!--video-button--> <?php endif; ?> </div><!--home-list-img--> <div class="home-list-content"> <h2 class="featured-content-text"><?php echo "EVENT"; ?></h2> <span class="widget-info"><span class="widget-author"><?php echo "Posted By: "; ?><?php the_author(); ?></span> | <?php the_time(get_option('date_format')); ?></span> <h2> <?php the_title(); ?> </h2> <p><b><?php echo tribe_events_event_schedule_details(); ?> </b></p> <p><?php echo tribe_events_get_the_excerpt(); ?> </p> </div><!--home-list-content--> </a> </li> <?php }break;}} ?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Can Event Archives be put in with Normal Post Archives’ is closed to new replies.