我正在尝试从 wordpress 外部获取登录数据。
我的意思是,我安装了 wordpress mysite/wp/
,我正在调用以下函数mysite/index.php
include( 'wp/wp-load.php');
global $current_user;
get_currentuserinfo();
print_r($current_user);
它打印一个空的 WP_User 对象,如下所示:
WP_User Object ( [data] => [ID] => 0 [caps] => Array ( ) [cap_key] => [roles] => Array ( ) [allcaps] => Array ( ) [filter] => )
我应该包括其他东西吗?我究竟做错了什么?
谢谢..