我目前正在使用网站https://barwareandmore.com.au,
如果您点击左侧导航栏中的任何项目,然后将鼠标悬停在其他项目上,您可以看到该链接的标题属性包含该类别的说明。
此代码也反映在所有页面的源代码中(从而制作重复内容)
有没有办法可以从这些链接中删除title属性?或者将它们设定为无价值?
我正在使用达芬奇主题
抱歉,我不能更具体,仍然是wordpress的新秀,
感谢您提供任何帮助/意见/建议:]
答案 0 :(得分:1)
如果您只想在菜单部分设置侧面导航时删除title属性,我希望这可以帮助您。 http://www.wpbeginner.com/wp-tutorials/how-to-add-title-attribute-in-wordpress-navigation-menus/
如果有帮助,请告诉我。
答案 1 :(得分:1)
我确实下载了主题,并查看了它。
转到您的主题文件,在我认为的cat-menu.php
文件夹中查找products
,然后查找:
$product_cat_menu = wp_list_categories( array(
'taxonomy' => 'product_cat',
'show_count' => 1,
'hide_empty' => 1,
'echo'=> 0,
'title_li' => sprintf('<h3>%s</h3>', __('Categories', 'ami3')),
'link_before' => '<span class="main-el-icon"></span>'
) );
并添加'use_desc_for_title' => 0
,它基本上告诉查询不在标题中包含描述。最后它将是:
$product_cat_menu = wp_list_categories( array(
'taxonomy' => 'product_cat',
'show_count' => 1,
'hide_empty' => 1,
'echo'=> 0,
'title_li' => sprintf('<h3>%s</h3>', __('Categories', 'ami3')),
'link_before' => '<span class="main-el-icon"></span>',
'use_desc_for_title' => 0
) );