我无法在Wordpress中使用get_currentuserinfo()获取当前的用户ID

时间:2016-08-24 05:06:35

标签: wordpress

我是wordpress的新手,我使用WP REST API创建了一个wordpress api。 我在api中创建了一个自定义路由,但在回调中我没有使用函数get_currentuserinfo()

获取当前用户ID和用户详细信息

2 个答案:

答案 0 :(得分:1)

  

在Wordpress 4.5中,此函数 get_currentuserinfo()已被弃用

<强>替换

get_currentuserinfo()

使用

wp_get_current_user();

在此处找到不推荐的信息:https://developer.wordpress.org/reference/functions/get_currentuserinfo/

尝试一下。您将获得当前用户信息。

答案 1 :(得分:1)

你去吧

 $current_user = wp_get_current_user();
 $user_id = $current_user->ID;

阅读更多Here