如何让wordpress的子页面列表显示在父页面中或者显示在小工具边栏呢?
如果想在WordPress 父页面中显示子页面列表链接,可以通过下面的代码实现。
将下面的代码添加到当前主题 functions.php 中:
function wpb_list_child_pages() { global $post; if ( is_page() && $post->post_parent ) $childpages = wp_list_pages( 'sort_column=menu_order&title_li=&child_of=' . $post->post_parent . '&echo=0' ); else $childpages = wp_list_pages( 'sort_column=menu_order&title_li=&child_of=' . $post->ID . '&echo=0' ); if ( $childpages ) { $string = '<ul>' . $childpages . '</ul>'; } return $string; } add_shortcode('wpb_childpages', 'wpb_list_child_pages');
之后,可以使用短代码:
[wpb_childpages]
加到文本小工具中。
默认文本小工具不支持短代码,可以将:
add_filter('widget_text', 'do_shortcode');
添加到当前主题 functions.php 中,让文本小工具支持短代码。
也可以将下面的代码添加到主题页面模板适当的位置:
<?php wpb_list_child_pages(); ?>
比如新建一个页面模板,将代码加进去,只在使用该功能时,选择新建的页面模板。
历史上的今天:
- 2018: ex.video成人版抖音上线(37)
- 2018: 51岁男子假冒40岁,下药侵犯上百名女子(3)
- 2018: 淘宝+天猫+京东双11红包活动链接集合,每天可领,支持叠加使用(1)
- 2016: 英雄联盟免作任务直领奖励(0)
- 2016: 最新手持身份证网站(0)