在普通帖子中,当您添加图像时,WordPress编辑器会将标题添加到img 标记,而不是周围a 标签如果两个标签的标题不同img 标签将由浏览器显示,而不是a 标签
使用您最初的示例,我将title属性添加到img 标签:
<a href="path_to_files/image.jpg" title="fancy title">
<img width="150" height="150" src="path_to_files/image-150x150.jpg" class="attachment-thumbnail" title="different fancy title" alt="fancy alt"/>
</a>
如果将鼠标悬停在图像上,您将看到“不同的花式标题”。