© Сделано на LiveStreet
Дизайн - ©2009 MODx RED Group
[!Ditto? &summarize=`1` &startID=`1` &randomize=`1` &depth=`6` &hideFolders=`1` &tpl=`randompost`!][!Wayfinder? &sortBy=`random` &limit=`3`!]
<?php
$results = $modx->getDocumentChildren($id = $rootID,$active = 1,$deleted = 0,'id',$where = '',$sort='',$dir='',$limit = '');
shuffle($results);
for($i=0;$i<$countItem;$i++){
if($i==0){
$s.= $results[$i]['id'];
}else{
$s.= ', '.$results[$i]['id'];
}
}
echo $modx->runSnippet('Ditto', array('startID' => $rootID, 'documents'=>$s, 'tpl'=>$tpl' ));
?>