テンプレートタグが使えないところを一括で画像パスに書き換えfunction.phpに 下記のを追加するだけ function replaceImagePath($arg) { $content = str_replace('"img/', '"' . get_bloginfo('template_directory') . '/images/', $arg); return $content; } add_action('the_content', 'replaceImagePath');