/*-------------------------------------------*/
/* 固定ページの画像パスを省略します
/*-------------------------------------------*/
function replaceImagePath($arg) {
$content = str_replace('"images/', '"' . get_bloginfo('template_directory') . '/images/', $arg);
return $content;
}
add_action('the_content', 'replaceImagePath');