Pagination Bug solved
-
When we have pagination, the second page doesn’t show the <<Previous>> link.
There’s an error on file
includes/abstracts/class-list.php
on line #117:The second
%s
is missing, this is the fixed code:if (2 === $paged) { $return .= sprintf( '<a href="%s" class="prev page-numbers prev_text">%s</a>', esc_url(remove_query_arg($paged_qp)), $prev_text ); }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Pagination Bug solved’ is closed to new replies.