posts - Converting multiple loops into one single loop with pagination

I am using Isotope jquery plugin to filtersort posts in Wordpress but to correctly filter the posts into the right orde

I am using Isotope jquery plugin to filter/sort posts in Wordpress but to correctly filter the posts into the right order I have needed to output each category one after the other. To do this I've created one custom query for each category (4 categories in total, therefore 4 queries). You can see my working code here: .

I would like to convert these 4 queries into just one query but this one query must display these 4 categories one after the other (like it does currently).

The reason why I want this, is because I'd like to add Infinite scroll functionality to grab the next batch of posts regardless of what category they are in. In order for this to work I need to add pagination and figured pagination wouldn't work correctly with 4 separate loops. However, if anyone can implement pagination into my existing code without having to re-write it then I'm all ears.

I am using Isotope jquery plugin to filter/sort posts in Wordpress but to correctly filter the posts into the right order I have needed to output each category one after the other. To do this I've created one custom query for each category (4 categories in total, therefore 4 queries). You can see my working code here: http://pastebin/LTDmbbLf.

I would like to convert these 4 queries into just one query but this one query must display these 4 categories one after the other (like it does currently).

The reason why I want this, is because I'd like to add Infinite scroll functionality to grab the next batch of posts regardless of what category they are in. In order for this to work I need to add pagination and figured pagination wouldn't work correctly with 4 separate loops. However, if anyone can implement pagination into my existing code without having to re-write it then I'm all ears.

Share Improve this question asked Nov 3, 2012 at 12:09 egr103egr103 3051 gold badge5 silver badges17 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You can refer this.

Use the examples part. Inside the foreach loop put your all the code which needs to be repeated for each category type.

something like:

<?php
$categories = get_the_category();

if($categories){
    foreach($categories as $category) {

$my_query = new WP_Query('cat=$category->term_id');

//code to display category posts goes here

    }

}
?>

You are ready to go with this.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745627069a4636872.html

相关推荐

  • posts - Converting multiple loops into one single loop with pagination

    I am using Isotope jquery plugin to filtersort posts in Wordpress but to correctly filter the posts into the right orde

    8小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信