Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- if ( !defined('ABSPATH') ) { die('-1'); } ?>
- <li>
- <?php if(has_post_thumbnail($post->ID, 'thumbnail')):
- $image_id = get_post_thumbnail_id($post->ID);
- $image_url = wp_get_attachment_image_src($image_id, 'thumbnail', true); ?>
- <a href="<?php echo get_permalink($post->ID) ?>" class="post-thumb"><img src="<?php echo $image_url[0]; ?>" alt="<?php echo $post->post_title ?>" /></a>
- <?php endif; ?>
- <div class="table-height">
- <h4 class="entry-title summary">
- <?php $my_query = new WP_Query(‘tribe_events’,
- ‘showposts’ => 5,
- ‘eventDisplay’ => 'custom',
- ‘start_date’ => $current_date,
- ‘end_date’ => $current_date);
- if ($my_query->have_posts()) :
- while ($my_query->have_posts()) : $my_query->the_post(); ?>
- <a href="<?php echo tribe_get_event_link(); ?>" rel="bookmark"><?php the_title(); ?></a>
- </h4>
- <div class="duration">
- <?php echo tribe_events_event_schedule_details(); ?>
- </div>
- <div>
- <a href="<?php echo tribe_get_event_website_link(); ?>" target="_blank" rel="bookmark">View Website</a>
- </div>
- <div>
- <?php the_excerpt() ?>
- </div>
- <div>
- <a href="<?php echo tribe_get_event_link() ?>" class="tribe-events-read-more" rel="bookmark"><?php _e( 'Find out more', 'tribe-events-calendar' ) ?> »</a>
- </div>
- </div>
- <?php if ( $cost && tribe_get_cost() != '' ) { ?>
- <span class="tribe-events-divider">|</span>
- <div class="tribe-events-event-cost">
- <?php echo tribe_get_cost( null, true ); ?>
- </div>
- <?php } ?>
- <div class="vcard adr location">
- <?php if ( $venue && tribe_get_venue() != '') { ?>
- <span class="fn org tribe-venue"><?php echo tribe_get_venue_link(); ?></span>
- <?php } ?>
- <?php if ( $address && tribe_get_address() != '' ) { ?>
- <span class="street-address"><?php echo tribe_get_address(); ?></span>
- <?php } ?>
- <?php if ( $city && tribe_get_city() != '' ) { ?>
- <span class="locality"><?php echo tribe_get_city(); ?></span>
- <?php } ?>
- <?php if ( $region && tribe_get_region() !='' ) { ?>
- <span class="region"><?php echo tribe_get_region(); ?></span>
- <?php } ?>
- <?php if ( $zip && tribe_get_zip() != '' ) { ?>
- <span class="postal-code"><?php echo tribe_get_zip(); ?></span>
- <?php } ?>
- <?php if ( $country && tribe_get_country() != '') { ?>
- <span class="country-name"><?php echo tribe_get_country(); ?></span>
- <?php } ?>
- <?php if ( $organizer && tribe_get_organizer() != '' ) { ?>
- <?php _e( 'Organizer:', 'tribe-events-calendar-pro' ); ?>
- <span class="tribe-organizer"><?php echo tribe_get_organizer_link(); ?></span>
- <?php } ?>
- <?php if ( $phone && tribe_get_phone() != '' ) { ?>
- <span class="tel"><?php echo tribe_get_phone(); ?></span>
- <?php } ?>
- </div>
- </li><?php endwhile; ?>
- <?php endif; ?>
- <?php wp_reset_query();?>
Advertisement
Add Comment
Please, Sign In to add comment