2013年12月20日金曜日

wordpressで画像の前後にタグを自動追加

function my_image_send_to_editor( $html, $id, $caption, $title, $align, $url, $size ) {

  $html = preg_replace('/<a href=".+">/', '', $html);
  $html = preg_replace('/<\/a>/', '', $html);
  $html = '<div class="aiueo">' .$html .'</div>';

return $html;
}

add_action( 'image_send_to_editor', 'my_image_send_to_editor', 10 ,7);




をfuction.phpに追加する

すると
<div class="aiueo"><img src="画像URL" alt="代替テキスト" /></div>
となる

参考URL
http://www.sysbird.jp/wptips/2011/07/04/%E7%94%BB%E5%83%8F%E3%82%92%E6%8A%95%E7%A8%BF%E3%81%AB%E6%8C%BF%E5%85%A5%E3%81%99%E3%82%8B%E3%82%BF%E3%82%B0%E3%82%92%E3%82%AB%E3%82%B9%E3%82%BF%E3%83%9E%E3%82%A4%E3%82%BA%E3%81%99/