2014-10-10 60 views
0

如果他們匹配兩個單獨的分類法,這是免費的新娘配飾和格拉斯哥,我正在尋找顯示帖子。顯示在Wordpress中有兩個分類法的帖子wp_query

目前我可以得到下面的wp_query循環代碼來顯示這兩個分類法的所有結果;但是我需要循環來顯示只有選中的類別的帖子。

<?php 
    /** 
    * Create a new WP_Query 
    * Set $wp_query object to temp 
    * Grab $paged variable so pagination works 
    */ 
    ?> 
    <?php 
     global $wp_query; $post; $post_id = $post-> ID; 
     $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; 
     rewind_posts(); 
     $temp = $wp_query; 
     $wp_query = NULL; 

     $post_type = 'place'; // change this to the post type you want to show 
     $show_posts = '30'; // change this to how many posts you want to show 
     $category_name = 'bridal-accessories-free,special-offer' // change this to the category name you need 

    ?> 

    <?php $wp_query = new WP_Query('placecategory=' . $category_name . '&post_type=' . $post_type . '&posts_per_page=' . $show_posts . '&paged=' . $paged); ?> 
     <?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?> 
      <p style="font-size: 15px; margin-bottom: 10px;"><span style="font-weight: normal; margin-right: 5px; text-transform: uppercase; color: #a5cc8e;"><?php the_title(); ?></span> <span style="margin-right: 5px; color: #000;"><?php echo get_post_meta($post->ID,'geo_address',true);?></span> <?php $contact = stripslashes(get_post_meta($post->ID,'contact',true)); 
        if($contact && get_option('ptthemes_contact_on_detailpage') == 'Yes') { ?><?php echo PHONE.": "; ?> <?php echo $contact;?><?php } ?> 
     <?php endwhile; ?></p> 
    <?php wp_reset_query(); ?> 

    </div> 

如果可以這樣做,是否有將循環查詢變量傳遞到url中。我們需要這個來創建一個鏈接到結果。

提前致謝!

回答

0

請嘗試此驗證碼

$args = array(
    'post_type' => array('post','reviews'), 
    'paged' => $paged, 
    'tax_query' => array(
     array(
     'taxonomy' => 'category', 
     'terms' => 'android', 
     'field' => 'slug' 
    ), 
     array(
     'taxonomy' => 'review_category', 
     'terms' => 'android', 
     'field' => 'slug' 
    ), 
    ) 
); 
query_posts($args);