我想在wordpress站点的侧栏中列出当前页面的子页面作为列表项。
到目前为止,我一直在引用http://codex.wordpress.org/Function_Reference/wp_list_pages
我不确定如何将其设置为仅显示我的子页面,到目前为止,我有以下内容:
<?php $args = array(
\'depth\' => 0,
\'show_date\' => \'\',
\'date_format\' => get_option(\'date_format\'),
\'child_of\' => 0,
\'exclude\' => \'\',
\'include\' => \'\',
\'title_li\' => __(\'Title\'),
\'echo\' => 1,
\'authors\' => \'\',
\'sort_column\' => \'menu_order, post_title\',
\'link_before\' => \'\',
\'link_after\' => \'\',
\'walker\' => \'\',
\'post_type\' => \'page\',
\'post_status\' => \'publish\'
);
wp_list_pages($args);
?>
它返回:
Title
Home
Child 1
Child 2
Sample Page
我只是想要子页面(在本例中为1和2)。我也不想显示主页和示例页。
非常感谢您的帮助。