我只需要从TwentyTen导航菜单中使用的链接中删除HTML标题属性。
主题标题文件调用此
<?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
我已经尝试编辑它在nav-menu-template.php中构建链接的位置,但它似乎没有任何效果。
答案 0 :(得分:2)
以下是答案:remove title attribute from wordpress menu
或者使用jQuery删除它: 在header.php中:
$(function() {
$(“#header a”).removeAttr(“title”);
}
答案 1 :(得分:1)