Problem with paging with Eventbrite_Query
-
I have used the following code to query my events in WordPress template file
$events = new Eventbrite_Query( apply_filters( 'eventbrite_query_args', array( 'display_private' => true,'order'=> 'DSC', 'orderby' => 'date','nopaging' => false,'limit'=>9, ) ) );
I have put this at the end after endwhile
eventbrite_paging_nav( $events );
Problems are
1) Unable to get any paging
2) The array returned has 4 events, it should have 6
3) Total pages shown is 1
Can somebody point to an example with paging in WP to show all the events
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Problem with paging with Eventbrite_Query’ is closed to new replies.