質問編集履歴
1
変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -13,6 +13,42 @@
|
|
13
13
|
### 現状のコード
|
14
14
|
|
15
15
|
```ここに言語を入力
|
16
|
+
|
17
|
+
<?php
|
18
|
+
|
19
|
+
/**
|
20
|
+
|
21
|
+
* The main template file
|
22
|
+
|
23
|
+
*
|
24
|
+
|
25
|
+
* This is the most generic template file in a WordPress theme
|
26
|
+
|
27
|
+
* and one of the two required files for a theme (the other being style.css).
|
28
|
+
|
29
|
+
* It is used to display a page when nothing more specific matches a query.
|
30
|
+
|
31
|
+
* E.g., it puts together the home page when no home.php file exists.
|
32
|
+
|
33
|
+
*
|
34
|
+
|
35
|
+
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
36
|
+
|
37
|
+
*
|
38
|
+
|
39
|
+
* @package WordPress
|
40
|
+
|
41
|
+
* @subpackage Twenty_Nineteen
|
42
|
+
|
43
|
+
* @since Twenty Nineteen 1.0
|
44
|
+
|
45
|
+
*/
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
get_header();
|
50
|
+
|
51
|
+
?>
|
16
52
|
|
17
53
|
<?php
|
18
54
|
|
@@ -46,6 +82,12 @@
|
|
46
82
|
|
47
83
|
<?php endforeach; ?>
|
48
84
|
|
85
|
+
<?php
|
86
|
+
|
87
|
+
get_footer();
|
88
|
+
|
89
|
+
|
90
|
+
|
49
91
|
```
|
50
92
|
|
51
93
|
|