2011-12-19 80 views
0

以及我有一個wordpress循環在至極我想查詢來自2個類別的帖子,我想顯示類別之間的常見帖子... 如果帖子「測試」屬於類別「 x「,也是類別」y「這就是我想要查詢的。 我已經試過類似在wordpress上的自定義查詢

  <?php query_posts('cat=x&&cat=y'); ?> 

但是,這帶來了從兩大類,而不是重疊的... 提前感謝的帖子。

回答

1

你需要其中X和Y是類的ID的使用此

query_posts(array('category__and' => array(x,y)); 

0

貓= 267將是你選擇你的類別,但你必須有一個循環將帖子放在頁面中。

<?php query_posts('cat=267') ?> 
     <?php while (have_posts()) : the_post(); ?> 

      <div id="post" <?php post_class(); ?>> 

       <h2 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <?php edit_post_link(__('Edit', 'redlust'), '<span class="edit-link">', '</span>'); ?></h2> 
       <p class="post-meta">Posted in <?php the_category(', ') ?>, on <?php the_time('F jS, Y'); ?>, by <?php the_author_meta(display_name); ?> <strong>|</strong> <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></p> 
        <div class="entry-content"> 
         <?php the_content('Read the rest of this entry &raquo;'); ?> 
         <?php wp_link_pages(array('before' => '<div class="page-link">' . __('Pages:', 'redlust'), 'after' => '</div>')); ?> 
        </div><!-- .entry-content --> 
      </div> 

     <?php endwhile; ?>