How to get order of posts?

Found the answer from the WordPress docs.

For what the query is ordered by, I use:

global $wp_query;
echo $wp_query->get('orderby');

For the order by which the posts are queried:

global $wp_query;
echo $wp_query->get('order');

Leave a Comment