在Get_Pages函数中获取子页面

时间:2016-10-19 作者:Tristan de Jager

我知道这在这个网站上被问了很多次,但我真的不能用这些例子。

这是我目前的职能:

$city_ids = get_pages( 
    array(
        "hierarchical" => 0, 
        "sort_column" => "menu_order", 
        "sort_order" => "desc", 
        "meta_key" => "country", 
        "meta_value" => $atts[\'country\']
    )
);
这是可行的。它给了我想要的页面(Verhuizen naar Nederland),但我现在需要子页面。它有三页。请参见(还有一个):

enter image description here

2 个回复
SO网友:Khorshed Alam

有一个函数get_page_children 为此,请查看文档和示例。

https://codex.wordpress.org/Function_Reference/get_page_children

SO网友:noreabu

我建议在显示城市/家长的循环中使用WP\\u查询,并用$city->id/$post->id填充$id:

$children = new WP_Query( 
    array(
        "post_parent" => $id
    )
);

相关推荐

如何在WooCommerce总价金额->ProductPages下增加保证金

我对ProductPage上的woocommerce价格金额有两个问题。第一个问题:我想在总价格金额下增加更多保证金,并按下“添加到卡”按钮我怎样才能做到这一点?(示例见下图)第二我只想显示总价。现在我得到了可变产品的最低价格,显示在产品标题下面,以及总价格金额。我只想显示总价。已经谢谢你了!