Title: Simple list
Last modified: October 28, 2016

---

# Simple list

 *  [verowp2016](https://wordpress.org/support/users/verowp2016/)
 * (@verowp2016)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/simple-list-2/)
 * Hi, there is a view that show only tot event (tot event from current day or, 
   if empty, last tot event passed) but in a very simple way?
    Like nested ul whith
   only date and title and link?

Viewing 6 replies - 1 through 6 (of 6 total)

 *  [Benjamin](https://wordpress.org/support/users/bsokic/)
 * (@bsokic)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/simple-list-2/#post-8376457)
 * Hi,
 * We have 6 views, but it is not possible to show only the current day events.
 *  Thread Starter [verowp2016](https://wordpress.org/support/users/verowp2016/)
 * (@verowp2016)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/simple-list-2/#post-8385846)
 * Hi,
    not only the current day events. I need to show in home page the future 
   five events in clendar. I search for an api, a rss feed, but I can’t find anything
   like.
 * I can use the agenda views, but I don’t need the graphics. A simple ul or a node
   xml….
 * Thanks!
 *  Thread Starter [verowp2016](https://wordpress.org/support/users/verowp2016/)
 * (@verowp2016)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/simple-list-2/#post-8385894)
 * Or better a “wp_query like” to use, whith params.
 *  [javied](https://wordpress.org/support/users/javied/)
 * (@javied)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/simple-list-2/#post-8400714)
 * Hi,
 * I guess you can achieve by using wp_query something like this :
 *     ```
       $args = array(	'post_type' 	=> 'ai1ec_event',
       		'posts_per_page'=> -1,
       		'paged' 	=> -1,
       		'orderby' 	=> 'date',
       		'order' 	=> 'DESC',		
   
       		);
   
       $query = new WP_Query();
       $query->query( $args );
       if ($query->have_posts())
       		{while ($query->have_posts())
       					{ // do what you want to display}
       }
       wp_reset_query();
       ```
   
 * Hope this will work.
    Thanks
 *  Thread Starter [verowp2016](https://wordpress.org/support/users/verowp2016/)
 * (@verowp2016)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/simple-list-2/#post-8432514)
 * This not work, not show the repeated events.
 *  [javied](https://wordpress.org/support/users/javied/)
 * (@javied)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/simple-list-2/#post-8433647)
 * Hi,
 * To make it work with repeated events or events between the dates or next future
   events, you have to slightly modify your query as event dates are storing in 
   separate tables from where you can pull the event id with respect to that date.
   These are the 2 tables which you can play around with.
 * 1. <yourtableprefix>_ai1ec_event_instances
    2. <yourtableprefix>_ai1ec_events
 * Thanks

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Simple list’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/all-in-one-event-calendar.svg)
 * [Timely All-in-One Events Calendar](https://wordpress.org/plugins/all-in-one-event-calendar/)
 * [Support Threads](https://wordpress.org/support/plugin/all-in-one-event-calendar/)
 * [Active Topics](https://wordpress.org/support/plugin/all-in-one-event-calendar/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/all-in-one-event-calendar/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/all-in-one-event-calendar/reviews/)

 * 6 replies
 * 3 participants
 * Last reply from: [javied](https://wordpress.org/support/users/javied/)
 * Last activity: [9 years, 7 months ago](https://wordpress.org/support/topic/simple-list-2/#post-8433647)
 * Status: not resolved