Wordpress:TwentyTen 导航菜单标题
我只需要从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
答案如下: 从 WordPress 菜单中删除标题属性
或者使用 jQuery 删除它:
在 header.php 中:
Here's the answer: remove title attribute from wordpress menu
Or remove it using jQuery:
in the header.php :
好问题。
这是实现这一点的一个很好的参考。
http://www.tryyourselfs.com/tag/remove-wp_nav_menu -a-title-using-jquery
http://erikshosting.com/tag/wp_nav_menu/
http://www.dynamicwp。 net/articles-and-tutorials/remove-title-attribute-from-wordpress-menu-link/
Good question.
Here is a good refrence to implement this.
http://www.tryyourselfs.com/tag/remove-wp_nav_menu-a-title-using-jquery
http://erikshosting.com/tag/wp_nav_menu/
http://www.dynamicwp.net/articles-and-tutorials/remove-title-attribute-from-wordpress-menu-link/