我所需要的只是获取自定义帖子类型的多个子页面这是我的查询:
$args = array(
\'post_parent\' => $post->ID,
\'post_type\' => \'all_products\',
\'orderby\' => \'menu_order\'
);
$child_query = new WP_Query( $args );
这里有一些HTML,之后,当我需要子页面的数量时,我有这个
<?php while ( $child_query->have_posts() ) : $child_query->the_post(); ?>
<?php
$children = get_pages( array( \'child_of\' => $post->ID, \'parent\' => 0,
\'post_type\' => \'all_products\' ) );
$children_num = count( $children );
echo $children_num;
...
执行此操作后,如果我回显\\u permalink(),我只会得到0;我获得了指向子页面的正确链接。。。一切似乎都在运转,只是这是问题所在
如果有任何帮助或建议,我将不胜感激。谢谢