|
@@ 808-811 (lines=4) @@
|
| 805 |
|
} |
| 806 |
|
|
| 807 |
|
// Post author IDs for an IN clause. |
| 808 |
|
if ( ! empty( $this->query_vars['post_author__in'] ) ) { |
| 809 |
|
$join_posts_table = true; |
| 810 |
|
$this->sql_clauses['where']['post_author__in'] = 'post_author IN ( ' . implode( ',', wp_parse_id_list( $this->query_vars['post_author__in'] ) ) . ' )'; |
| 811 |
|
} |
| 812 |
|
|
| 813 |
|
// Post author IDs for a NOT IN clause. |
| 814 |
|
if ( ! empty( $this->query_vars['post_author__not_in'] ) ) { |
|
@@ 814-817 (lines=4) @@
|
| 811 |
|
} |
| 812 |
|
|
| 813 |
|
// Post author IDs for a NOT IN clause. |
| 814 |
|
if ( ! empty( $this->query_vars['post_author__not_in'] ) ) { |
| 815 |
|
$join_posts_table = true; |
| 816 |
|
$this->sql_clauses['where']['post_author__not_in'] = 'post_author NOT IN ( ' . implode( ',', wp_parse_id_list( $this->query_vars['post_author__not_in'] ) ) . ' )'; |
| 817 |
|
} |
| 818 |
|
|
| 819 |
|
$join = ''; |
| 820 |
|
|