我有好几页都是这样的
父页(ID 24)
我正在使用的子页面A子页面B子页面C子页面D子页面E子页面FWP_Query
返回所有子页面,但只有部分返回。在DB中,所有子页都具有相同的父ID 24。
// args
$args = array(
\'numberposts\' => -1,
\'post_type\' => \'page\',
\'post_parent\' => 24
);
// query
$the_query = new WP_Query( $args );
// loop through posts
if( $the_query->have_posts() ): ?>
<?php while( $the_query->have_posts() ) : $the_query->the_post();?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php endwhile; ?>
<?php endif; ?>
比方说B&;C不要返回。我尝试将其分配给一个新的父级(ID25),并修改查询以返回父级25的子页面,缺失的页面显示良好。
除了ACF PRO之外,我几乎没有其他插件,在最近为上述页面创建一些新页面和字段之前,ACF PRO运行良好。