I want to display posts sorted by slug on a page. Is it possible to order posts by slug using query_posts or Wp_query?
Leave a Reply
You must be logged in to post a comment.
I want to display posts sorted by slug on a page. Is it possible to order posts by slug using query_posts or Wp_query?
You must be logged in to post a comment.
In WordPress the post slug is saved in database with name
post_name
, so to sort posts by slug just use:orderby=name
.Edit:
Here’s the example of query: