From 823ad1ae6e620f3fac643eeade9eb75fb1b4ada8 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sat, 26 Oct 2013 03:20:09 +0000 Subject: [PATCH] Have get_current_user_id() return 0 when pluggable.php is not yet included (which brings the ability to set or get the current user). fixes #25690 for trunk. Built from https://develop.svn.wordpress.org/trunk@25929 git-svn-id: http://core.svn.wordpress.org/trunk@25888 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/user.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wp-includes/user.php b/wp-includes/user.php index 9a60cd206904..a0cb8d815fba 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -212,6 +212,8 @@ function count_many_users_posts( $users, $post_type = 'post', $public_only = fal * @return int The current user's ID */ function get_current_user_id() { + if ( ! function_exists( 'wp_get_current_user' ) ) + return 0; $user = wp_get_current_user(); return ( isset( $user->ID ) ? (int) $user->ID : 0 ); }