如何获取要在 if 语句中使用的自定义 WordPress 菜单内容列表?

发布于 2024-11-09 07:42:16 字数 367 浏览 0 评论 0原文

我正在向“关于我们”部分添加一个子菜单,并希望该子菜单也出现在其所有子部分上。

有没有办法显示自定义列表的内容,以便在将新部分添加到子菜单时 if 语句自动更新,而不是创建一个 if 语句,并将每个子页面手动添加到 if 语句?

例如,

$about_sub_menu_contents= something snazzy to display the menu contents;
    if($about_sub_menu_contents){
        wp_nav_menu('menu=about_sub_menu'); 
    }

我想避免将每个子页面添加到 if 语句中,以便菜单显示在该页面上。

I am adding a sub menu to an "About us" section and would like the sub menu to appear on all of its sub sections as well.

Instead of creating an if statement with each subpage added to the if statement manually is there a way to display the contents of the custom list so the if statement updates itself when new sections are added to the sub menu?

eg

$about_sub_menu_contents= something snazzy to display the menu contents;
    if($about_sub_menu_contents){
        wp_nav_menu('menu=about_sub_menu'); 
    }

I want to avoid having to add every subpage to the if statement for the menu to appear on that page.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

小镇女孩 2024-11-16 07:42:16
<?php
    $ancestors = get_post_ancestors($post);
    if (is_page(123) || in_array(123,$ancestors)) {
        wp_nav_menu('menu=about_sub_menu');
    }
?>

其中123是父页面的帖子ID(在您的例子中是“关于我们”)。

<?php
    $ancestors = get_post_ancestors($post);
    if (is_page(123) || in_array(123,$ancestors)) {
        wp_nav_menu('menu=about_sub_menu');
    }
?>

Where 123 is the post-ID of the parent page (the "About us", in your case).

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