我試圖讓WordPress中當前用戶如下面的代碼片段當前用戶:如何獲得
<?php
include('/wp-admin/includes/user.php');
$current_user = wp_get_current_user();
echo 'Username: ' . $current_user->user_login;
?>
,但我得到了以下錯誤:
Fatal error: Call to undefined function wp_get_current_user() in /membri/mysite/wordpress/getUser.php on line 3
我是什麼做錯了,我該如何解決?
添加'包括(「/可溼性粉劑管理員/包括/ pluggable.php」) ;'(不要刪除用戶) –
你的頁面位於哪裏?實際上,您只需要'wp_get_current_user()'在WordPress中返回當前用戶的數組。 – nyedidikeke
我已經解決了函數調用,但現在我已經這個問題:調用未定義功能apply_filters()在/membri/mysite/wordpress/wp-includes/user.php上線2525 – GianLuke94