Hi-
great theme, thanks.
i use the magazine content element a lot and can’t figure out how to manually sort my posts so I can get them in the order I want.
Can you help me with this?
I’ve tried plugins:
“simple custom post order”
“simple page order”
Hi ledsupply,
Please have a look at the following thread:
I’m not sure custom sort order is possible here.
If you need further assistance please let us know.
Best regards,
Victoria
hi victoria-
thanks. I have a couple questions.
how does magazine element currently sort?
And, how would this code sort the posts by?
add_filter(‘avf_magazine_entries_query’, ‘avf_magazine_entries_custom_query’);
function avf_magazine_entries_custom_query ( $query ) {
$query[‘orderby’] = ‘date’;
$query[‘order’] = ‘DESC’;
return $query;
}