Descending Sort
-
Hi there,
I’m using the filter gmw_default_form_values and didn’t seem to be a way to sort on DESC. The following it’s sorting by ID but on ASC order:
function gmw_modify_default_form( $gmw )
{
$gmw[“page_load_results”][“orderby”] = ‘ID’;
$gmw[“page_load_results”][“order”] = ‘DESC’;
return $gmw;
}
add_filter( ‘gmw_default_form_values’, ‘gmw_modify_default_form’, 60, 1 );Any help would be appreciated. Thanks!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Descending Sort’ is closed to new replies.