2014-09-02 73 views
1

我有一個自定義後類型類別,它的名字是捐款和捐款類別有50個職位。現在我想獲取所有這些帖子的任何幫助?試圖展示自定義後類型的具體定義類別的職位

我想顯示模板頁面上,名字是 /模板名稱:幫助捐贈/

我嘗試了這一切,但它不是爲我工作。

<?php query_posts('category_name=donations&post_type=help'); ?> 

    <?php while(have_posts()): the_post(); ?> 

    <?php the_title(); ?> 

    <?php endwhile; ?> 

<?php wp_reset_query(); ?> 

此外,這也是行不通的。

<?php $the_query = new WP_Query('category_name=donations&post_type=help'); ?> 

    <?php while($the_query->have_posts()): $the_query->the_post(); ?> 

    <?php the_title(); ?> 

    <?php endwhile; ?> 

<?php wp_reset_postdata(); ?> 

回答

1

試試這個。您可能需要更改分類名稱。我只是認爲你把它命名爲post_type_category。因此,這是讓所有post_types與具有post_type_category名爲donations名稱help

$args = array('post_type' => 'help', 
       'tax_query' => array(
         array(
         'taxonomy' => 'post_type_category', //don't know if this is right for you 
         'field' => 'slug', 
         'terms' => 'donations' 
        ) 
       ) 
      ); 
$loop = new WP_Query($args); 
while ($loop->have_posts()) : $loop->the_post(); 
    the_title(); 
    echo '<div class="entry-content">'; 
    the_content(); 
    echo '</div>'; 
endwhile; 
+0

非常感謝你親愛的。上帝祝福你。 – 2014-09-02 13:36:37

相關問題