代码之家  ›  专栏  ›  技术社区  ›  Ryan Hayes

如何使用wordpress的query_posts()方法显示一组组合的文章和页面

  •  1
  • Ryan Hayes  · 技术社区  · 14 年前

    我有一个模板,我正在使用,它可以选择显示一组文章在首页的特色部分,或选择性地显示一组指定的页面在同一个特色区域。但是,我发现代码显示在/或 我不太清楚如何将两者结合起来,并将一组文章和页面列表放在一起。

    据我所知,query_posts()会覆盖wordpress在页面上显示的任何一组项目,因此,在这里,根据主题的模式,它会传递参数到query_posts()以获取特定类别的文章,或者传递到一组页面中:

    <div id="slides">
        <?php global $ids;
        $ids = array(); 
    
        $featured_cat = get_option('mytemplate_feat_cat'); 
        $featured_num = get_option('mytemplate_featured_num'); 
    
        if (get_option('mytemplate_use_pages') == 'false') query_posts("showposts=$featured_num&cat=".get_cat_ID($featured_cat));
        else {
            global $pages_number;
    
            if (get_option('mytemplate_feat_pages') <> '') $featured_num = count(get_option('mytemplate_feat_pages'));
            else $featured_num = $pages_number;
    
            query_posts(array
                            ('post_type' => 'page',
                            'orderby' => 'menu_order',
                            'order' => 'ASC',
                            'post__in' => get_option('mytemplate_feat_pages'),
                            'showposts' => $featured_num
                        ));
        } ?>
                <!-- Start my loop to display everything-->
        <?php if (have_posts()) : while (have_posts()) : the_post();
        global $post; ?>
    

    到目前为止,我已经考虑了一点,但还不能忘记如何组合参数来表示查询日志(getMyPostsArray().addList(oHineedAssociatePagesToo())//是的,我知道这看起来像c之类的…我不是一个php人。

    下面是一个更易于阅读的版本,更接近我想要的代码:

                $featured_cat = get_option('mytemplate_feat_cat'); 
                    //I combined featured_num to get the total number of featured items to display
            $featured_num = get_option('mytemplate_featured_num') + count(get_option('mytemplate_feat_pages'));; 
    
    query_posts("showposts=$featured_num&cat=".get_cat_ID($featured_cat));
    
                //I think this second line overwrites the first query_posts() :-/
                query_posts(array
                                ('post_type' => 'page',
                                'orderby' => 'menu_order',
                                'order' => 'ASC',
                                'post__in' => get_option('mytemplate_feat_pages'),
                                'showposts' => $featured_num
                            ));
    
    1 回复  |  直到 14 年前
        1
  •  1
  •   kovshenin    14 年前

    Ryan,你为什么不继续做两个查询和两个循环呢?

    query_posts("post_type=post&showposts=3");
    while (have_posts()) { the_post(); }
    
    query_posts(array(
        "post_type" => "page",
        "post__in" => get_option("mytemplate_feat_pages"),
        "showposts" => 5
    ));
    while (have_posts()) { the_post(); }
    

    如果您需要一定数量的文章和页面来填充空格,也可以使用 $wp_query->found_posts 计算你拥有的和你需要的。这可能是最简单的解决方案,因为即使您可以在SQL中获取文章和页面,也可能很难对它们进行排序,因为文章没有菜单顺序,而您不喜欢按发布日期排序的页面。

    希望有帮助, 干杯!