请尝试以下代码:
post\\uu in(数组)-使用post ID。指定要检索的帖子。注意:如果您使用粘性贴子,则会将其包括在内(带前缀!)在您检索的帖子中,无论您是否想要它。
<?php
    $parent = $post->ID;
    $paged = (get_query_var(\'paged\')) ? get_query_var(\'paged\') : 1;
    $query_args = array(
      \'post_type\' => \'page\',
      \'post_in\' => array(\'post_id_to_include\'),
      \'posts_per_page\' => 3,
      \'orderby\'   => \'rand\',
      \'post_parent\' => $parent,
      \'paged\' => $paged
    );
   // create a new instance of WP_Query
   $wp_query = new WP_Query($query_args);
?>