Wordpress:TwentyTen 导航菜单标题

发布于 2024-11-08 03:59:34 字数 262 浏览 0 评论 0原文

我只需要从 TwentyTen 导航菜单中使用的链接中删除 HTML 标题属性。

主题头文件调用此

 <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>

我尝试编辑它在 nav-menu-template.php 中构建链接的位置,但它似乎没有任何效果。

I simply need to remove the HTML title attribute from the link used in the TwentyTen navigation menu.

The theme header file calls this

 <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>

I've tried editing where it builds the links in nav-menu-template.php but it doesn't seem to have any effect.

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

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

发布评论

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

评论(2

小兔几 2024-11-15 03:59:34

答案如下: 从 WordPress 菜单中删除标题属性

或者使用 jQuery 删除它:
在 header.php 中:

$(function() {
    $(“#header a”).removeAttr(“title”);
}

Here's the answer: remove title attribute from wordpress menu

Or remove it using jQuery:
in the header.php :

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