通常,在创建某种形式的查询时,我会对参数使用一个数组,如下所示:
$postslistArgs = array( \'child_of\' => 320, \'parent\' => 320 ); $postslist = get_pages($postslistArgs);但是,在其他情况下,我还需要/想要使用URI样式的查询参数,如下所示:
get_pages(\'child_of=320&parent=320\');这很简单,但是有没有可能在更高级的联合/交叉查询上使用URI参数样式,例如
post__not_in
需要一组ID吗?