WP_Query – Author in meta_query
-
Hello there!
i need to query author in meta_query and not from author arg.
sample:
$search_args = array( 'post_type' => 'custom_post_type', 'post_status' => array('publish'), 'posts_per_page' => -1, 'meta_query' => array( 'relation' => 'OR', array( 'relation' => 'AND', array( 'key' => 'author', 'value' => '1234', 'compare' => '=', ), array( 'key' => 'custom_key', 'value' => 'the_key', 'compare' => '=', ), ), array( 'relation' => 'AND', array( 'key' => 'author', 'value' => '4321', 'compare' => '=', ), array( 'key' => 'custom_key', 'value' => 'the_key', 'compare' => '=', ), ), ), );
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘WP_Query – Author in meta_query’ is closed to new replies.