wp_list_pages
将仅输出分层职位类型。如果我们查看source中的函数,就会看到它调用get_pages
加载页面以进行输出。如果我们看get_pages
函数,我们将看到:
// Make sure the post type is hierarchical
$hierarchical_post_types = get_post_types( array( \'hierarchical\' => true ) );
if ( !in_array( $post_type, $hierarchical_post_types ) )
return false;
默认值
post
post类型不是层次结构,因此函数不输出任何内容。如果您的
event
post类型也不是分层的,这可以解释为什么它也不输出任何内容。