Move `get_current_user_id()` call out of if-block, see [25669].
props layotte. fixes #25372. Built from https://develop.svn.wordpress.org/trunk@25689 git-svn-id: http://core.svn.wordpress.org/trunk@25605 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
26e6703de7
commit
e483532553
|
@ -2686,6 +2686,8 @@ class WP_Query {
|
|||
$read_private_cap = 'read_private_' . $post_type_cap . 's';
|
||||
}
|
||||
|
||||
$user_id = get_current_user_id();
|
||||
|
||||
if ( ! empty( $q['post_status'] ) ) {
|
||||
$statuswheres = array();
|
||||
$q_status = $q['post_status'];
|
||||
|
@ -2713,8 +2715,6 @@ class WP_Query {
|
|||
unset($p_status);
|
||||
}
|
||||
|
||||
$user_id = get_current_user_id();
|
||||
|
||||
if ( !empty($e_status) ) {
|
||||
$statuswheres[] = "(" . join( ' AND ', $e_status ) . ")";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue