1

$options此方法可用的参数是什么?

array getChildIds ([integer $id = null], [integer $depth = 10], [array $options = array()])

我正在寻找一种方法来获取孩子的别名不是“f”的所有孩子(深度 = 3)。

4

1 回答 1

4

用这个:

<?php
$id = 123;
$depth = 3;

$ids = $modx->getChildIds($id, $depth);
$docs = $modx->getCollection('modResource', array(
    'id:IN' => $ids
    ,'alias:!=' => 'f'
));
$output = '';
foreach ($docs as $doc) {
    $output .= $doc->get('pagetitle') . '<br/>';
}

return $output;
于 2012-11-26T19:56:21.043 回答