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...