記事ID【1】と【2】を親に持つ固定ページの最新記事を1件ずつ表示、
さらにその順番を日付順に表示したいのですが、
そのようなことは可能なのでしょうか?
- 記事ID【2】を親に持つ記事(2021.11.20)
- 記事ID【1】を親に持つ記事(2021.11.19)
PHP
1<?php $args = 2 array( 3 'post_type' => 'page', 4 'posts_per_page' => 1, 5 'post_parent' => 1, 6 'orderby' => 'date', 7 'order' => 'DESC' 8 ); 9 $the_query = new WP_Query( $args ); 10 if ( $the_query->have_posts() ): 11 while ( $the_query->have_posts() ): 12 $the_query->the_post(); ?> 13 14記事ID【1】を親に持つ固定ページの最新記事が表示 15 16<?php endwhile; endif; ?> 17 18<?php $args = 19 array( 20 'post_type' => 'page', 21 'posts_per_page' => 1, 22 'post_parent' => 2, 23 'orderby' => 'date', 24 'order' => 'DESC' 25 ); 26 $the_query = new WP_Query( $args ); 27 if ( $the_query->have_posts() ): 28 while ( $the_query->have_posts() ): 29 $the_query->the_post(); ?> 30 31記事ID【2】を親に持つ固定ページの最新記事が表示 32 33<?php endwhile; endif; ?>
あなたの回答
tips
プレビュー