How to paginate this custom loop? [duplicate]
Likely this is happening because you are using a custom page template. Try the following. I’ve commented the steps along the way. Hope it helps. <?php //get the current page $paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1; //pagination fixes prior to loop $temp = $query; $query = null; //custom loop using WP_Query $query = new … Read more