回答編集履歴
1
仕様勘違いによるミスの修正
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
<?php
|
8
8
|
|
9
|
-
$id =
|
9
|
+
$id = [];
|
10
10
|
|
11
11
|
$args = array(
|
12
12
|
|
@@ -28,7 +28,7 @@
|
|
28
28
|
|
29
29
|
<?php while ( $query->have_posts() ) : $query->the_post(); ?>
|
30
30
|
|
31
|
-
<?php
|
31
|
+
<?php array_push($id, get_the_ID()); ?>
|
32
32
|
|
33
33
|
<?php endwhile; endif; ?>
|
34
34
|
|