按父ID获取子页面ID

时间:2017-11-16 作者:elke_wtf

我目前正试图从自定义帖子类型中获取子页面id,但返回的值始终为null。我知道我传递的特定ID有一个父ID,因此应该有一个匹配项。

使用父id获取子id的适当方法是什么?

这就是我所尝试的:

$parentid = $order->get_id();

$args = array(
  \'post_parent\'     => $parentid,
  \'post_type\'       => \'shop_subscription\'
);

$child = new WP_Query($args);

if ($child->have_posts()) : while ($child->have_posts()) : $child->the_post();
  $childid = get_the_id();  
endwhile;
else:
  $childid = "not set";
endif;

1 个回复
SO网友:Nikki Mather

这应该行得通。我不完全确定你的代码到底出了什么问题(已经很晚了),但下面的代码对我来说很有用。显然我换了$order->get_id() 具有已知ID和post_type 已设置为page.

<?php 
    $parentid = $order->get_id();

    $child = new WP_Query( array(\'post_parent\' => $parentid, \'post_type\' => \'shop_subscription\') );

    if ($child->have_posts()) : while ($child->have_posts()) : $child->the_post();
        $childid = get_the_ID();
    endwhile;
        else:
            $childid = "not set";
    endif;

    wp_reset_query();

?>                      

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post