回答編集履歴
1
追記修正
test
CHANGED
@@ -12,10 +12,32 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
-
|
15
|
+
`get_template_directory_uri()` 関数は、 [関数リファレンス/get_template_directory_uri](https://wpdocs.osdn.jp/%E9%96%A2%E6%95%B0%E3%83%AA%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9/get_template_directory_uri) に
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
> 有効化している テンプレート ディレクトリの URI を取得する。SSL が存在するかチェックする。
|
20
|
+
|
21
|
+
> 注意: 末尾にスラッシュ( / )は含まれません。
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
とあるようにテーマディレクトリの URI を取得します。
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
たとえば、example.com で、TwentyTwenty テーマを使っていると仮定した場合、`get_template_directory_uri()` では、 `http://example.com/wp-content/themes/twentytwenty` が、帰ってきます。(最後に `/` は付きません。)
|
16
30
|
|
17
31
|
|
18
32
|
|
19
33
|
|
20
34
|
|
35
|
+
質問にある
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
> <img class="lazyload fadein" src="<?php echo get_template_directory_uri(); ?>wp-content/themes/original/img/prof.jpg">
|
40
|
+
|
41
|
+
|
42
|
+
|
21
|
-
|
43
|
+
では、画像ファイルの URL は、`http://example.com/wp-content/themes/originalwp-content/themes/original/img/prof.jpg` となっているのではないでしょうか?
|