如何获取要在 if 语句中使用的自定义 WordPress 菜单内容列表?
我正在向“关于我们”部分添加一个子菜单,并希望该子菜单也出现在其所有子部分上。
有没有办法显示自定义列表的内容,以便在将新部分添加到子菜单时 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
其中123是父页面的帖子ID(在您的例子中是“关于我们”)。
Where 123 is the post-ID of the parent page (the "About us", in your case).