默认情况下,modx revo中的wayfinder插件应按menuindex排序。这似乎不起作用。我有以下内容:
[[!Wayfinder? &startId=`2` &level=`1` &ignoreHidden=`TRUE` &outerClass=`news` &sortBy=`menuindex` &sortOrder=`DESC`]]
我怀疑这是我忽略的愚蠢......
编辑:我现在已经开始工作了。
我查看了wayfinder.class.php
中的探路者代码。以下行被注释掉:
$c->groupby($this->modx->getSelectColumns('modResource','modResource','',array('id')));
这是因为代码中的以下注释:
/* not sure why this groupby is here in the first place. removing for now as it causes issues with the sortby clauses */
也许这将有助于将来。
答案 0 :(得分:1)
我在wayfinder.class.php中查看了探路者代码以下行被评论:$ c-> groupby($ this-> modx-> getSelectColumns('modResource','modResource','',阵列( 'ID')));
由于代码中的以下注释,它被注释掉了:
/ *不确定为什么这个groupby首先出现在这里。暂时删除,因为它导致sortby子句* /
的问题也许这有助于将来的任何人