WordPress 显示父页面和子页面的链接
我正在构建一个 WordPress 网站,在侧边栏中我想显示用户所在部分的子导航,所以我想显示类似的内容,如果它们位于“关于”页面上,
关于 链接 有用的联系方式
但是目前我只能管理子页面(链接、有用的联系人),我将如何显示父链接以及当前我的代码如下所示,
if($post->post_parent)
$children .= wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0");
else
$children .= wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
if ($children) { ?>
<ul>
<?php echo $children; ?>
</ul>
<?php } ?>
I am building a wordpress site and in the sidebar I wanting to show the sub nav of the section the user in, so I would like to show something like if they were on the about page,
About
Links
Useful Contacts
However at the moment I have only managed to the child pages out (Links, Useful Contacts), how would I show the show the parent link as well currently my code looks like this,
if($post->post_parent)
$children .= wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0");
else
$children .= wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
if ($children) { ?>
<ul>
<?php echo $children; ?>
</ul>
<?php } ?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的是哪个版本的 WP?
如果您使用的是> 3.0,那么您应该开始使用 wp_nav_menu。它更易于管理。
但这里有一个关于如何在 WP 中使用子导航的很好的教程:
http://www.svennerberg.com/2009/02 /在-wordpress中创建子菜单/
Which version of WP are you using?
If you are using > 3.0, then you should start using wp_nav_menu. It's a lot more managable.
But here is a good tutorial on how to use sub-navigation in WP:
http://www.svennerberg.com/2009/02/creating-a-submenu-in-wordpress/