Order by Date DESC

User
$args = array(
'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.

Leave a Comment

Your email address will not be published. Required fields are marked *