我正在尝试在主页上获取特定的多页摘录,但它显示了所有页面,它应该只显示请求的页面ID,需要帮助,下面是我正在使用的代码。
<?php
$args = array(
\'post_type\' => \'page\',
\'page_id \' => array( 17, 19, 21 )
);
?>
<?php
$my_query = new WP_Query( $args );
while ( $my_query->have_posts() ): $my_query->the_post();
$do_not_duplicate = $post->ID;
?>
<h3><?php the_title(); ?></h3>
<div class="text"> <?php echo wp_trim_words( get_the_content(), 15, \'...\' ); ?> <a href="<?php echo get_page_link(); ?>" class="read-more">Read More</a> </div>
<?php endwhile; ?>