Custom Archive Ordering
This snippet allows you to change the default ordering of posts in archive pages, such as sorting by title or custom field.
PHP
function custom_archive_ordering($query) {
if ($query->is_archive() && $query->is_main_query()) {
$query->set('orderby', 'title');
$query->set('order', 'ASC');
}
}
add_action('pre_get_posts', 'custom_archive_ordering');
Snippet Feedback
Did this snippet work for you? Do you have any questions about this snippet? Leave some feedback below.
SHARED BY