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(); ?>
比如新建一个页面模板,将代码加进去,只在使用该功能时,选择新建的页面模板。
感谢各位的阅读!看完上述内容,你们对WordPress如何在父页面中显示子页面列表大概了解了吗?希望文章内容对大家有所帮助。如果想了解更多相关文章内容,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。