php子页面在主页面里,WordPress 父页面中显示子页面列表

如果想在WordPress 父页面中显示子页面列表链接,可以通过下面的代码实现,下面由WordPress教程栏目给大家介绍。

d3487a9a07060bb563c315aece899728.png

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 = '

  • ' . $childpages . '
';

}

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(); ?>

比如新建一个页面模板,将代码加进去,只在使用该功能时,选择新建的页面模板。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值