函数原型
get_current_user_id(): int
函数描述
Gets the current user’s ID.
是否弃用
未弃用
函数参数
无
函数返回值
int The current user’s ID, or 0 if no user is logged in.
函数位置
File: wp-includes/user.php.
函数源码
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 );
}
源码链接
变更日志
| Version | Description |
|---|---|
| MU (3.0.0) | Introduced. |

