通过wp_Query获取最后一个孩子的帖子

时间:2016-10-19 作者:MahdiY

我在wp post中有以下结构(自定义post类型):

邮递

儿童1

儿童11(*)

儿童12(*)

儿童2

儿童21(*)

儿童22(*)

儿童3

我需要通过wp\\U查询类(或挂钩)获得星号帖子

注:我确定立柱的最大深度为2。

我该怎么做?

1 个回复
SO网友:mmm

try this

$posts = get_posts([
    "post_type" => "ABCD", // put the custom type here
    "post_parent__not_in" => "0", // parent is not root
]);