Sort by name – second wp_query
Posts are not sorted alphabetically, because you don’t tell WordPress to sort them in such way. By default they will be sorted by date in descendant order (newest first). What you should do, is change your WP_Query args by adding order and orderby, so it should look like this: $args = array( ‘post_type’ => ‘os_book’, … Read more