我正在尝试列出自定义帖子类型的所有页面,但使用:
<?php
$args = array(
'post_type' => 'white_paper',
'depth' => -1
);
wp_list_pages($args);
?>
不起作用。我似乎无法列出post_type的'post'的页面,也不能包含带有'include'参数的id的页面。我已经在全新安装和我的暂存网站上尝试了这个。在3.5.2和3.5.1上运行
答案 0 :(得分:1)
自定义帖子类型是标记为“分层”还是被视为普通“帖子”? wp_list_pages函数仅适用于分层自定义帖子类型:
http://codex.wordpress.org/Function_Reference/wp_list_pages
(查看'post_type'参数)