Showing events in Carousel or Slider
-
Hi there
I would like to show upcoming events in a CarouselI like WP Posts Carousel – and found the code below on another post highlighting how to show the date in the Carousel (using a different events plugin)
function my_wpc_item_description( $description, $params ) { $starttime = tribe_get_start_time(); //get the startdate without the time $startdate = tribe_get_start_date($post->ID,false); $description = ' <div class="wp-posts-carousel-desc"> <p>' . $startdate . '</p> <p>' . $starttime . '</p> </div>'; return $description; } add_filter('wpc_item_description', 'my_wpc_item_description', 1, 2);
Would anyone be able to help me with the code needed to display the date using Events Organiser – please
Or has anyone got a slider to work in a similar way?Any help appreciated
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Showing events in Carousel or Slider’ is closed to new replies.