Created
May 16, 2017 14:25
-
-
Save pedrorvidal/f063e5921a2bd7ce3626a98970f7d8aa to your computer and use it in GitHub Desktop.
WP Sort by multiple meta's
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 | |
| $WP_categorias_filtro = array( | |
| 'post_type' => array('proposta', 'problema'), | |
| 'posts_per_page' => 6, | |
| 'meta_query' => array( | |
| 'relation' => 'OR', | |
| 'contagem' => array( | |
| 'key' => 'contagem_views', | |
| 'type' => 'NUMERIC', | |
| 'compare' => 'EXISTS' | |
| ), | |
| 'data' => array( | |
| 'key' => 'contagem_views', | |
| 'type' => 'NUMERIC', | |
| 'compare' => 'NOT EXISTS' | |
| ), | |
| ), | |
| 'orderby' => array( | |
| 'contagem' => 'DESC', | |
| 'post_date' => 'DESC' | |
| ), | |
| 'paged' => $paged | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment