teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

1

ミスがあったため修正。

2016/08/30 11:32

投稿

kei344
kei344

スコア69625

answer CHANGED
@@ -2,7 +2,7 @@
2
2
  ```PHP
3
3
  function replaceImagePath($arg) {
4
4
  $content = str_replace('"images/', '"' . get_bloginfo('template_directory') . '/images/', $arg);
5
- $content = str_replace(',images/', '"' . get_bloginfo('template_directory') . '/images/', $content); // これを足すとどうなりますか?
5
+ $content = str_replace(',images/', ',' . get_bloginfo('template_directory') . '/images/', $content); // ミスがあったため修正
6
6
  return $content;
7
7
  }
8
8
  add_action('the_content', 'replaceImagePath');