按分类法指定while循环中的第一个帖子

时间:2013-12-04 15:14:05

标签: php wordpress loops while-loop posts

我正在尝试查询wordpress中的帖子,到目前为止一直很好。但是,我想在所有人面前展示一个带有特定标签“信息”的帖子(即使在粘性前面)。

现在主题的查询是这样的:

$sticky = get_option( 'sticky_posts' );
    rsort( $sticky );

    if(of_get_option('sticky-posts') == 'show_sticky'){         

        query_posts (array( 'post__in' => $sticky, 'order' => $order_posts,  'ignore_sticky_posts' => 1, 'paged' => $paged ) ); 



    }

然后循环开始:

//BEGIN LOOP
    //=====================================================?> 

    <article id="articlehold">


        <?php


        if(have_posts()) : while ( have_posts() ) : the_post();

现在我在查询中做了一些编辑,以获得前面带有'info'标签的帖子,但没有运气。现在我不确定在循环中或循环之前编辑它的最佳位置是什么?

我怎么能这样做?

0 个答案:

没有答案