回答編集履歴
1
修正
test
CHANGED
@@ -3,3 +3,39 @@
|
|
3
3
|
1. カテゴリーのリストを取得
|
4
4
|
|
5
5
|
2. カテゴリーごとに、WP_Queryのリストを取得
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
while、foreachなど、ループは2重になるはずです。
|
10
|
+
|
11
|
+
```
|
12
|
+
|
13
|
+
while (カテゴリーを取得) {
|
14
|
+
|
15
|
+
カテゴリーのタイトルを表示
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
while (取得したカテゴリーごとに記事を取得) {
|
20
|
+
|
21
|
+
記事を表示
|
22
|
+
|
23
|
+
}
|
24
|
+
|
25
|
+
}
|
26
|
+
|
27
|
+
```
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
---
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
以下、参考になりそうです。
|
36
|
+
|
37
|
+
[https://naoyu.net/tax_query/](https://naoyu.net/tax_query/)
|
38
|
+
|
39
|
+
[https://illustswitch.com/wp/posts-by-category/](https://illustswitch.com/wp/posts-by-category/)
|
40
|
+
|
41
|
+
[https://hirashimatakumi.com/blog/4147.html](https://hirashimatakumi.com/blog/4147.html)
|