質問編集履歴
2
症状追記しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -101,3 +101,29 @@
|
|
101
101
|
</div>
|
102
102
|
|
103
103
|
```
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
■追記
|
110
|
+
|
111
|
+
★の位置に入れると、1件だけですが、正しい情報が表示されます。
|
112
|
+
|
113
|
+
「<?php while」~「endwhile; ?>」に入れると最新記事しか表示されなくなります。
|
114
|
+
|
115
|
+
```ここに言語を入力
|
116
|
+
|
117
|
+
<?php if(have_posts()) : ?>
|
118
|
+
|
119
|
+
//★<?php the_time('Y/m/d'); ?><?php the_title(); ?>
|
120
|
+
|
121
|
+
<?php while(have_posts()) : the_post();?>
|
122
|
+
|
123
|
+
//記事エリア表示
|
124
|
+
|
125
|
+
<?php endwhile; ?>
|
126
|
+
|
127
|
+
<?php endif; ?>
|
128
|
+
|
129
|
+
```
|
1
タグ追加
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|