2011-07-26 116 views
3

在我的wordpress環境中,我有很多頁面,而且我也有一個名爲casestudy的自定義文章類型。我已經設置了一個page-clients.php,其中包含一些自己的內容,然後我使用query_posts()函數將所有帖子與帖子類型casestudy進行比較。wordpress wp_list_pages幫助

在查看單個案例研究時,我想要顯示導航,此導航需要包含頁面,客戶端和案例研究以及案例研究的鏈接,我想添加所有屬於自定義帖子類型的帖子「案例研究」到目前爲止,我有以下,

<?php wp_list_pages(array('include' => '154, 136', 'title_li' => '', 'sort_column' => 'ID', 'sort_order' => 'DESC', 'depth' => '1')); ?>

我怎麼能列出所有的案例研究帖還,能不能用wp_list_pages()

回答

1

完成從Wordpress documentation

$args = array('post_type' => 'product', 'posts_per_page' => 10); 
$loop = new WP_Query($args); 
while ($loop->have_posts()) : $loop->the_post(); 
    the_title(); 
    echo '<div class="entry-content">'; 
    the_content(); 
    echo '</div>'; 
endwhile; 

你可能有這樣的事情:

$args = array('post_type' => 'casestudy'); 
$case_studies = new WP_Query($args); 
var_dump($case_studies);