2013-10-04 270 views
0

我目前正在開發一個個人項目,並且此頁面基本上有兩個選項卡,每個將在一個稱爲webinar的自定義帖子類型下顯示特定類別的存檔。提取並顯示Wordpress類別的自定義帖子類型

我打電話使用

<?php query_posts('category_name=demos-on-demand-videos'); ?> 

在標籤中的一個類別然而,當我這樣做我」剛開無後的發現屏幕,我在做什麼錯?我正試圖顯示網絡研討會自定義帖子類型下的類別演示視頻。

回答

0

讓您的每個標籤的頁面模板,並在其中使用自定義的循環。確保針對您的特定帖子類型,分類或術語進行調整。

<?php $args=array( 
'post_type' => 'webinar', //set the post_type to use. 
'taxonomy' => 'demos-on-demand-videos', // set the taxonomy to use. 
'term' => 'term1', //set which term to use or comment out if not using. 
'posts_per_page' => 10 // how many posts or comment out for all.  
); 

$webinarloop = new WP_Query($args); 
if($webinarloop->have_posts()) : while($webinarloop->have_posts()) : 
$webinarloop->the_post(); 

get_template_part('content'); //or whatever method you use for displaying your content. 

endwhile; endif; //end the custom post_type loop 

?> 
0

此代碼對我的作品就好了
* x是你已經創建 * Y分類名的名字是類別蛞蝓

 $args = array('post_type' => 'client','posts_per_page'=>'8','order'=>'DESC','x'=>'y'); 

$loop = new WP_Query($args); 
while ($loop->have_posts()) : $loop->the_post(); 
相關問題