Title: Event list
Last modified: August 31, 2016

---

# Event list

 *  [Sherry22](https://wordpress.org/support/users/sherry22/)
 * (@sherry22)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/event-list-11/)
 * I can see my event excerpts on one page which is great but not all my events 
   are showing. I “think” the issue is with showing reoccuring events. How can I
   include them all on this page?
 * [https://wordpress.org/plugins/event-organiser/](https://wordpress.org/plugins/event-organiser/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Stephen Harris](https://wordpress.org/support/users/stephenharris/)
 * (@stephenharris)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/event-list-11/#post-7276621)
 * The category pages will only display 10 events per page (there’ll be next/previous
   links on the page to navigate through the other pages).
 * To set it to display all events of a given category on the same page:
 *     ```
       add_action( 'pre_get_posts', function( $query ) {
            if ( $query->is_main_query() && is_tax( 'event-category' ) ) {
                 $query->set( 'posts_per_page', -1 );
            }
       } );
       ```
   

Viewing 1 replies (of 1 total)

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

 * ![](https://ps.w.org/event-organiser/assets/icon-256x256.png?rev=978123)
 * [Event Organiser](https://wordpress.org/plugins/event-organiser/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/event-organiser/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/event-organiser/)
 * [Active Topics](https://wordpress.org/support/plugin/event-organiser/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/event-organiser/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/event-organiser/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Stephen Harris](https://wordpress.org/support/users/stephenharris/)
 * Last activity: [10 years, 4 months ago](https://wordpress.org/support/topic/event-list-11/#post-7276621)
 * Status: not resolved