Viewing 1 replies (of 1 total)
  • Plugin Author Stephen Harris

    (@stephenharris)

    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.