Answer the question
In order to leave comments, you need to log in
Modx getResources doesn't sort. Am I not using Fenom+getResources correctly?
I am using Collection. I want to get an array. But sorting doesn't work.
{var $resources = $_modx->getResources(
['published' => 1],
['parents' => 27],
['includeTVs' => 1],
['processTVs' => 1],
['includeContent ' => 1],
['sortby' => 'pagetitle', 'sortdir' => 'DESC'],
['debug' => 1]
)}
Only two options are displayed in Debug:
{$_modx->getResources("Array ( [published] => 1 )", Array ( [parents] => 27 ) )}
['sortby' => 'pagetitle', 'sortdir' => 'DESC'],
works.
Answer the question
In order to leave comments, you need to log in
['sortby' => 'pagetitle', 'sortdir' => 'DESC'],
You need to write like this
['sortby' => 'pagetitle'],
['sortdir' => 'DESC']
and not together
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question