WordPress Pagination with ajax - Dots

admin2025-04-17  0

I am using paginate_links() along with pagination. It works whenever a number is clicked but if I click 3 dots stays there so no 4 pages can't be selected. Is there any workaround?

I am using paginate_links() along with pagination. It works whenever a number is clicked but if I click 3 dots stays there so no 4 pages can't be selected. Is there any workaround?

Share Improve this question asked Jan 6, 2020 at 12:17 user145078user145078 1
  • You will need to return up-to-date pagination controls in your AJAX response. FWIW this is why AJAX sites typically don't use numbered pagination. – Jacob Peattie Commented Jan 7, 2020 at 1:08
Add a comment  | 

1 Answer 1

Reset to default -1

You can use "mid_size" to manage number of pages to display in paginate_links() function. Please check https://developer.wordpress/reference/functions/paginate_links/ for pagination options. Please see example below to use mid_size.

$args = array( 
    'mid_size' => 3, 
    'prev_next' => true, 
    'prev_text' => '« Previous', 
    'next_text' => 'Next »', 
); 

$result = paginate_links($args); 
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1744857697a270927.html

最新回复(0)