質問編集履歴
2
どのphp内か追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -17,6 +17,8 @@
|
|
17
17
|
|
18
18
|
|
19
19
|
つたない説明で分かりづらいかもしれませんが、何卒ご教示いただければ幸いです。
|
20
|
+
|
21
|
+
下記はindex.php内の該当すると思われるコードです。
|
20
22
|
|
21
23
|
|
22
24
|
|
1
コードを追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -17,3 +17,33 @@
|
|
17
17
|
|
18
18
|
|
19
19
|
つたない説明で分かりづらいかもしれませんが、何卒ご教示いただければ幸いです。
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
```
|
24
|
+
|
25
|
+
<div class="home05" id="news">
|
26
|
+
|
27
|
+
<h2>NEWS</h2>
|
28
|
+
|
29
|
+
<ul>
|
30
|
+
|
31
|
+
<?php query_posts('category_name=news&showposts=40'); ?>
|
32
|
+
|
33
|
+
<?php if (have_posts()):while(have_posts()):the_post(); ?>
|
34
|
+
|
35
|
+
<li>
|
36
|
+
|
37
|
+
<div class="news_date"><?php the_date("Y/m/d"); ?></div>
|
38
|
+
|
39
|
+
<div class="news_title"><?php the_title(); ?></div>
|
40
|
+
|
41
|
+
</li>
|
42
|
+
|
43
|
+
<?php endwhile; endif; ?>
|
44
|
+
|
45
|
+
</ul>
|
46
|
+
|
47
|
+
</div>
|
48
|
+
|
49
|
+
```
|