回答編集履歴
1
追記
test
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
```PHP
|
2
2
|
|
3
|
+
<div class="home05" id="news">
|
3
4
|
|
5
|
+
<h2>NEWS</h2>
|
6
|
+
|
7
|
+
<ul>
|
8
|
+
|
9
|
+
<?php query_posts('category_name=news&showposts=40'); ?>
|
4
10
|
|
5
11
|
<?php if (have_posts()):while(have_posts()):the_post(); ?>
|
6
12
|
|
@@ -14,6 +20,10 @@
|
|
14
20
|
|
15
21
|
<?php endwhile; endif; ?>
|
16
22
|
|
23
|
+
</ul>
|
24
|
+
|
25
|
+
</div>
|
26
|
+
|
17
27
|
|
18
28
|
|
19
29
|
```
|