質問編集履歴
1
ソースの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -4,6 +4,42 @@
|
|
4
4
|
|
5
5
|
なにか対策があればご教示いただきたく存じます。
|
6
6
|
|
7
|
+
投稿記事の取得はできました。
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
```PHP
|
12
|
+
|
13
|
+
$args = [
|
14
|
+
|
15
|
+
'post_type' => 'test',
|
16
|
+
|
17
|
+
'posts_per_page' => -1,
|
18
|
+
|
19
|
+
];
|
20
|
+
|
21
|
+
$the_query = new WP_Query($args);
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
if ($the_query->have_posts()):
|
26
|
+
|
27
|
+
while ($the_query->have_posts()):
|
28
|
+
|
29
|
+
$the_query->the_post();
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
$categories = get_the_terms($post->ID, 'cat');
|
34
|
+
|
35
|
+
endwhile;
|
36
|
+
|
37
|
+
endif;
|
38
|
+
|
39
|
+
wp_reset_postdata();
|
40
|
+
|
41
|
+
```
|
42
|
+
|
7
43
|
|
8
44
|
|
9
45
|
WPのバージョンは5.5.3です。
|