WordPress 显示父页面和子页面的链接

发布于 2024-09-18 12:33:16 字数 633 浏览 15 评论 0原文

我正在构建一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只涨不跌 2024-09-25 12:33:16

您使用的是哪个版本的 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文