我在使用AVADA主题时也遇到了同样的问题。它在悬停时显示文本/标题的图像上附加title属性。
<script type="text/javascript">
/* The first line waits until the page has finished to load and is ready to manipulate */
$(document).ready(function(){
/* remove the \'title\' attribute of all <img /> tags */
$("img").removeAttr("title");
});
</script>