質問編集履歴
2
page.php の記述追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -39,6 +39,72 @@
|
|
39
39
|
}
|
40
40
|
|
41
41
|
add_shortcode('template_url', 'shortcode_templateurl');
|
42
|
+
|
43
|
+
```
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
page.php
|
48
|
+
|
49
|
+
```
|
50
|
+
|
51
|
+
<?php
|
52
|
+
|
53
|
+
/**
|
54
|
+
|
55
|
+
* The main template file
|
56
|
+
|
57
|
+
*
|
58
|
+
|
59
|
+
* @package hoge
|
60
|
+
|
61
|
+
* @since 1.0.0
|
62
|
+
|
63
|
+
*/
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
get_header();
|
68
|
+
|
69
|
+
?>
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
<main id="main" class="c-main">
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
<?php
|
78
|
+
|
79
|
+
if ( have_posts() ) {
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
while ( have_posts() ) {
|
84
|
+
|
85
|
+
the_post();
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
the_content();
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
}
|
94
|
+
|
95
|
+
}
|
96
|
+
|
97
|
+
?>
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
<?php
|
104
|
+
|
105
|
+
get_footer();
|
106
|
+
|
107
|
+
|
42
108
|
|
43
109
|
```
|
44
110
|
|
1
出力前のコード を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -46,7 +46,27 @@
|
|
46
46
|
|
47
47
|
# 結果
|
48
48
|
|
49
|
-
出力
|
49
|
+
出力前のコード
|
50
|
+
|
51
|
+
```
|
52
|
+
|
53
|
+
<picture>
|
54
|
+
|
55
|
+
<source media="(max-width: 767px)" srcset="[template_url]/image/index/image-smp-01.png">
|
56
|
+
|
57
|
+
<img src="[template_url]/image/index/image-01.png" alt="">
|
58
|
+
|
59
|
+
</picture>
|
60
|
+
|
61
|
+
```
|
62
|
+
|
63
|
+
↓
|
64
|
+
|
65
|
+
↓
|
66
|
+
|
67
|
+
↓
|
68
|
+
|
69
|
+
出力後のコード
|
50
70
|
|
51
71
|
```
|
52
72
|
|
@@ -62,7 +82,7 @@
|
|
62
82
|
|
63
83
|
|
64
84
|
|
65
|
-
srcset属性の時のみ、[template_url]がそのまま表示されてしまう。
|
85
|
+
srcset属性の時のみ、[template_url] がそのまま表示されてしまう。
|
66
86
|
|
67
87
|
|
68
88
|
|