wordpress中的Post_parent函数不返回页面子项

时间:2017-07-10 09:55:59

标签: php wordpress

<?php
    $currentID = get_the_ID();
    $argscases = new WP_Query( array( 'post_parent' => 2431 ) );

    $my_query = new WP_Query( array('post_type' => 'page', 'showposts' => '7', 'post__in' => array_diff($argscases, array($currentID)))); 
?>
<?php
    while ( $my_query->have_posts() ) : $my_query->the_post(); 
?>  
<a href="<?php the_permalink(); ?>" title="<?php the_title() ?>" class="btn btn-default btn-normal btn-inline " target="_self"><?php the_title() ?></a>
<?php endwhile; ?>

我正在尝试显示每个页面的按钮,该页面是ID为2431的页面的子页面。并且还排除了我正在查看的当前页面的按钮。但是当我执行上面的代码时,我得到了所有页面。如果有任何不清楚的地方,请告诉我,我可以澄清一下。

0 个答案:

没有答案