我想你的意思是,不要使用这种html:
<a href="http://example.com/?attachment_id=1375" rel="attachment wp-att-1375"><img src="http://example.com/wp-content/uploads/2012/09/image-300x78.jpg" alt="image.jpg" width="300" height="78" class="alignnone size-medium wp-image-1375" /></a>
您需要:
<a href="http://example.com/?attachment_id=1375" ><img src="http://example.com/wp-content/uploads/2012/09/image-300x78.jpg" alt="image.jpg" width="300" height="78" class="alignnone size-medium wp-image-1375" /></a>
在编辑器中,按“
插入帖子”。然后您可以尝试使用过滤器image_send_to_editor
并更换rel
-插入编辑器的html部分:
add_filter(\'image_send_to_editor\', \'wpse_88984_remove_rel\', 10, 2);
function wpse_88984_remove_rel($html, $id) {
if($id>0)
$html=str_replace(\'rel="attachment wp-att-\'.$id.\'"\',\'\',$html);
return $html;
}