Last active
August 27, 2021 16:25
-
-
Save ashsaraga/6e811b0355ca125d8131fdd2e11c56a3 to your computer and use it in GitHub Desktop.
Sorts any archive by any meta field.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$the_key = ''; // Field Name to sort on | |
$args = array( 'meta_key' => $the_key, | |
'orderby' => 'meta_value', | |
'order' => 'ASC' | |
); | |
global $wp_query; | |
query_posts( | |
array_merge( | |
$wp_query->query, | |
$args | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment