回答編集履歴

1

仕様勘違いによるミスの修正

2021/05/31 10:51

投稿

yuki84web
yuki84web

スコア1857

test CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  <?php
8
8
 
9
- $id = null;
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 if( is_null($id) ) $id = get_the_ID(); ?>
31
+ <?php array_push($id, get_the_ID()); ?>
32
32
 
33
33
  <?php endwhile; endif; ?>
34
34