Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我真的很喜欢 Wordpress 自动制作我的菜单,如果我不想的话,我不需要使用 Apperance->Menus 系统。子页面可以设置为下拉菜单,一切都很好。
除了:我无法在顶级菜单项上做一个标记,以显示存在子项。我怎么能做到这一点,而不使用外观->菜单系统?
菜单是通过以下方式创建的:
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
安德斯
您可以将一些标记背景/css 仅应用于 ul 的第一个子项/li。您可以按以下方式使用 JQuery。它应该只适用于主菜单的第一级 li。
$("ul.menu > li").css('background-image', 'url(images/marker.png)');