Hello, how can i sort posts in category and tag archive alphabetically?
1 Answers
Hi,
At this point, our theme does not support to sort posts in category and tag archive alphabetically. However, you can open the \wp-content\themes\dw-minion\archive.php
file, then add the following code under line 43.
<?php global $query_string; query_posts( $query_string . '&orderby=title&order=ASC' ); ?>
Hope this helps !
Please login or Register to submit your answer