我试图在主页上显示另一个页面的直接子页面,但我似乎无法正常工作,它只是显示了网站上的所有页面标题。。
它需要在wp\\u查询中,因为我需要在页面上使用高级自定义字段
我的代码:
<?php
$the_query = new WP_Query( array( \'post_type\' => \'page\', \'parent\' => 42, \'child_of\' => 0,) );
while ( $the_query->have_posts() ) : $the_query->the_post();
echo \'<h3>\'; the_title(); echo \'</h3>\';
echo \'<p>\' ; the_field(\'enter_stuff_here\'); echo \'</p>\';
endwhile;
wp_reset_postdata();
?>
我的理解是,如果我使用家长的ID,这将显示此页面的所有直接子页面(请注意,我不想显示孙子,只想显示直接子页面)
提前感谢您的帮助!