我正在创建这样的菜单https://squareup.com/ 我已经准备好了html、css和jquery。现在,我试图:
通过创建菜单项及其子菜单项wp-admin -> appearance -> menus
( which I have done )
分别动态输出菜单项及其相应的子菜单项。
<header>
<?php if ( get_field(\'landing_hero_image\') ): ?>
<div class="menu" style="background-image: url(<?php the_field(\'landing_hero_image\'); ?>);">
<a class="click-me">
main menu item
</a>
</div>
<div class="hidden-content">
sub menu item associated with the main item
</div>
<div class="banner" style="background-image: url(<?php the_field(\'landing_hero_image\'); ?>);">
</div>
<?php endif; ?>
</header>
总之,如何将输出(html)菜单项及其子项分开?
非常感谢。