我正在使用wordpress进行项目,我正努力让导航器显示我在wp_list_pages函数中只请求的页面,我只想在我的主要mav中显示5个页面,然后如果该页面有然后,任何孩子都会在下拉列表中显示这些内容,下面是我目前正在使用的代码。
<?php wp_list_pages('title_li=&sort_column=post_date&include=138,110,135,101,167'); ?>
如何显示所包含页面的子项?
答案 0 :(得分:1)
我发现在这些情况下最适合我的是忘记使用wp_list页面。而是进行查询,然后遍历结果以获取页面子项。
示例:
<ul>
<?php
$args = array(
'include' => array(138, 110, 135, 101, 167),
'orderby' => 'post_date',
'post_type'=> 'page',
);
/* Get posts according to arguments defined above */
$pages = get_posts($args);
echo "<ul>";
/* Loop through the array returned by get_posts() */
foreach ($pages as $page) {
/* Grab the page id */
$pageId = $page->ID;
/* Get page title */
$title = $page->post_title;
echo "<li>$title</li>";
/* Use page id to list child pages */
wp_list_pages("title_li=&child_of=$pageId" );
/* Hint: get_posts() returns a lot more that just title and page id. Uncomment following 3 lines to see what else is returned: */
//echo "<pre>";
//print_r($page);
//echo "</pre>";
}
echo "</ul>";
?>
</ul>
您的输出应该类似于:
<ul>
<li>Parent Page1<li>
<ul>
<li>Child page1</li>
<li>Child page2</li>
<li>Child page etc</li>
</ul>
<li>Parent Page2</li>
<ul>
<li>Child page1</li>
<li>Child page2</li>
<li>Child page etc</li>
</ul>
...and so forth
</ul>