Forums
Home / Plugin: WP-Paginate / Use with WP_Query
(@jupa8)
3 years, 4 months ago
Hi. Is possible to use this plugin with WP_Query? Thanks
(@alanp57)
I suppose that it does since the plugin uses WordPress hooks to append the pagination links to an index page.
How I can use It? Can you provide an example? Thanks
I don’t think I have an example of this. What you can do is first have a page or template that has a loop using WP_Query and then you will want to insert the pagination link function,
if(function_exists('wp_paginate')){ wp_paginate(); }
outside the while loop and before the wp_reset_postdata() function.