This topic has 2 replies, 2 voices, and was last updated 10 years ago by Anonymous.
Viewing 3 posts - 1 through 3 (of 3 total)
I would like to be able to specify which order my testimonials are displayed in the carousel. They start with the most recent and end with the first testimonial I created, which I would like to reverse (without having to recreate them all in backwards order). I tried manually setting the order for each testimonial-post, but there was no change.
Add 'order' => 'ASC' in testimonial.php shortcode on line no: 35 as shown below.
$query = array(
'post_type' => 'testimonialtype',
'showposts' => $limit,
'tax_query' => array(
'relation' => 'OR',
),
'paged' => $paged,
'order' => 'ASC'
);
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic.