Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello Eric,

    You want to import events from the Timely calendar to? And how to import events?

    Thread Starter Eric A. Silva

    (@ericsil24)

    Not exactly, although it would be great to be able to import events. I am looking to migrate from our homegrown events calendar to Timely. We had a bootstrap carousel/slider that displays our upcoming 8 events. That data was pulled from a query by a custom post type. I want to be able to do the same with timely. I’ve researched that we can pull “a1ec_events” as the post type, but I wanted to know the other tags to be able to display start/end date, and start time. I hope this makes more sense.

    This is just part of our query as an example of what I mean:

    <?php
    	$my_query = new WP_Query();
    	$args = array(
    		'post_type' => 'tf_events',
    		'orderby'  => 'meta_value',
    		'meta_key' => 'tf_events_enddate',
    		'order' => 'ASC',
    		'showposts' => 8,
    		'category__not_in' => array( 66 )
    	      );
    
    .....

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Query events for event carousel’ is closed to new replies.