質問編集履歴

1

追加

2018/07/03 14:05

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -15,6 +15,48 @@
15
15
 
16
16
 
17
17
  教えていただけると幸いです。
18
+
19
+
20
+
21
+ 「index.php」
22
+
23
+ ```ここに言語を入力
24
+
25
+ <?php
26
+
27
+ if ( have_posts() ) :
28
+
29
+
30
+
31
+ /* Start the Loop */
32
+
33
+ while ( have_posts() ) : the_post();
34
+
35
+
36
+
37
+ /*
38
+
39
+ * Include the Post-Format-specific template for the content.
40
+
41
+ * If you want to override this in a child theme, then include a file
42
+
43
+ * called content-___.php (where ___ is the Post Format name) and that will be used instead.
44
+
45
+ */
46
+
47
+ get_template_part( 'template-parts/post/content', get_post_format() );
48
+
49
+
50
+
51
+ endwhile;
52
+
53
+
54
+
55
+ endif;
56
+
57
+ ?>
58
+
59
+ ```
18
60
 
19
61
 
20
62