您现在的位置是:首页 > 教程 > WordPress教程WordPress教程
WordPress父页面中显示子页面列表的方法
冰枫2023-07-06 17:35:46WordPress教程已有人查阅
导读WordPress 父页面中显示子页面列表将下面的代码添加到当前主题 functions.php 中:之后,可以使用短代码:[wpb_childpages]加到文本小工具中。
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主题怎么添加文章字数和需要阅读时间
显示文章字数和阅读时间,这功能有什么用呢,我也不知道,不过有用户说人家有我们能不能也加一个,那就加吧。 -
wordpress主题导入安装的几种方法
wordpress怎么导入主题方法一:在线搜索导入安装访问后台 – 外观 -主题 – 安装主题,输入主题关键字,搜索浏览搜索结果,进行安装注:这里搜索的主题 -
wordpress默认五个用户角色的权限和功能
WordPress为什么是一个CMS内容管理系统?其中一个很重要的原因是,WorPress内置了网站安全和隐私系统,这样可以管理不同级别的WordPress用户角色。由于不同角色对应的权限不同,这 -
wordpress开启多用户/多站点/多域名模式
刷新网站后台,访问 工具 > 配置网络,根据自己的需要选择“子域名”或者“子目录”模式,设置好网站信息,然后点击“安装”
留言与评论 (共有 条评论) |