- This topic has 7 replies, 2 voices, and was last updated 5 years, 9 months ago by
Nayeem Riddhi.
Viewing 8 posts - 1 through 8 (of 8 total)
Hello
all documents are shown / ordered by date. latest added first. but how can we order them by name instead, beginning by numbers and A ?
thx !
Hi,
Which shortcode you are using? generally, you can use order_by="title" for ordering them by name. please check
Thanks.
there is no shortcode, the documents lists are direct links from categories assigned as menu items.
-
This reply was modified 5 years, 9 months ago by
Fabien Galiana.
Can you provide the page link for the clarification?
Thanks.
This reply has been marked as private.
Hello,
Please, give your temporary wp-admin login details in a private reply for the adjustments.
Thanks.
This reply has been marked as private.
Hi,
Thanks for your having patience, I have just adjusted sorting using the below code putting in your theme functions.php
add_action( 'pre_get_posts', 'wpdm_sort_staff_cat' );
function wpdm_sort_staff_cat( $query ) {
if ( $query->is_tax() || $query->is_post_type_archive('wpdmpro') ) {
$query->set('orderby', 'title');
$query->set('order', 'desc');
}
}
Thanks.
Viewing 8 posts - 1 through 8 (of 8 total)
The topic "how to order documents by name instead of date" is closed to new replies.