Hi Li-An
It’s not broken. It’s just a side effect of a new feature (see the changelog). You can now have paging on your seriestoc page and this affects the output of wp_series_list()
There are a couple ways to adjust this.
1. Change the per_page value in the series options page
2. If you are using the function directly you can pass the page value via the $args
eg.
//'number' = perpage value, 'offset'= what row to start on.
$args = array('number' => 20, 'offset' => 0);
wp_serieslist_display(FALSE, $args);
Thread Starter
Li-An
(@li-an)
Thank you for your answer. I will take a look at this – I read the changelog but did not understand this function was impacted.