我有一个子域,我试图将其限制为经过身份验证的Wordpress用户,但身份验证不起作用。我尝试了以下代码:
global $current_user;
wp_get_current_user();
if ( is_user_logged_in() ) {
echo \'Username: \' . $current_user->user_login . "\\n";
echo \'User display name: \' . $current_user->display_name . "\\n";
} else {
wp_loginout();
}
如果我使用URL域,这是可行的。com/intranet/page。php,但不在intranet上。领域com/页。phpHow我可以让它为子域工作吗?我尝试将以下内容添加到wp config。php,但这并没有起到任何作用:
define(\'COOKIE_DOMAIN\', \'.domain.com\'); // Used to authenticate subdomains
define(\'COOKIEPATH\', \'/\');
有什么想法吗?