Can I change the order in which connections are displayed ?
If I create say three connections and then display them at the bottom of my article, I will get them in reverse order. How can I change that ?
I tried to use ‘orderby’ and ‘order’ but it has no effect whatsoever :
$connected_titles = new WP_Query( array(
'post_type' => 'as_title',
'nopaging' => true,
'orderby' => 'title',
'order' => 'DESC',
'suppress_filters' => false,
'connected_from' => get_queried_object_id()
));
Just replace
'order' => 'DESC'
with'order' => 'ASC'
.