Skip to content

Instantly share code, notes, and snippets.

@pedrorvidal
Created May 16, 2017 14:25
Show Gist options
  • Select an option

  • Save pedrorvidal/f063e5921a2bd7ce3626a98970f7d8aa to your computer and use it in GitHub Desktop.

Select an option

Save pedrorvidal/f063e5921a2bd7ce3626a98970f7d8aa to your computer and use it in GitHub Desktop.
WP Sort by multiple meta's
<?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