Filter by two meta_keys and orderby another meta_key
-
This is my code:
$args = array( 'post_type' => 'temas', 'posts_per_page' => '15', 'meta_key' => 'personas', 'order' => 'asc', 'orderby' => 'meta_value', 'meta_query' => array( 'relation' => 'OR', array( 'key' => 'idioma', 'value' => $idio, 'compare' => '==' ), array( 'key' => 'idioma_2', 'value' => $idio, 'compare' => '==' ) ), 'post_status' => 'publish', );
I want to get all post filtered by meta_keys idioma and idioma_2, and ordered by another meta_key called “personas”, but it does not work, if I remove the relation on meta_query all works, but i need the relation OR… I dont know what to do…
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Filter by two meta_keys and orderby another meta_key’ is closed to new replies.