Order by Date DESC
November 21, 2024 ยท AI Conversations
User
$args = array(
'post_type' => 'resource',
'orderby' => 'title',
'order' => 'ASC',
);
'post_type' => 'resource',
'orderby' => 'title',
'order' => 'ASC',
);
$query = new WP_Query($args);
order by date desc
Assistant
To modify your query so that the results are ordered by date in descending order, you can change the `orderby` parameter to `date` and the `order` parameter to `DESC`. Here's the updated code:
$args = array(
'post_type' => 'resource',
'orderby' => 'date',
'order' => 'DESC',
);
$query = new WP_Query($args);
This will order the resources by their publication date in descending order.