WordPress で画像を挿入すると、rel=“attachment wp-att-xxxx” というタグが画像URLの次に挿入される。これが Lightbox colorbox プラグインが自動で rel=lightbox を挿入することを妨げていた。
それでこの rel= が勝手に挿入されないようにしてみた。
functions.php に次のコードを追加するだけ。これで挿入されなくなった。
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; }
/wp-admin/includes/media.php を編集する方法もある。