$options
此方法可用的参数是什么?
array getChildIds ([integer $id = null], [integer $depth = 10], [array $options = array()])
我正在寻找一种方法来获取孩子的别名不是“f”的所有孩子(深度 = 3)。
$options
此方法可用的参数是什么?
array getChildIds ([integer $id = null], [integer $depth = 10], [array $options = array()])
我正在寻找一种方法来获取孩子的别名不是“f”的所有孩子(深度 = 3)。
用这个:
<?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;