All in One Calendar Plugin Custom Post Type Query
Hi I'm trying to write a query which will pull the events out from the All in One Calendar Plugin. This is what I have so far:
?php query_posts('post_type=ai1ec_event');?
?php while ( have_posts() ) : the_post(); ?
?php echo 'h5a href="'.get_permalink().'"'.get_the_title().'/a/h5'; ?
?php endwhile; ?!-- End the Loop --
This works well to get the event titles and their respective content, but I need to get the event details out as well. eg. event dates, venue, location.
Thanks
Topic plugin-events-calendar calendar query Wordpress
Category Web