我問了一個關於獲取wordpress網站標題here的問題。如何在插件開發期間獲取用戶信息?
另外我需要獲取用戶信息,但沒有從文檔doesn工作,如果我不使用網絡模式,但開發插件。所以我不能使用wp_get_current_user()
或is_user_logged_in()
或get_userdata()
。
我無法找到關於此的文檔。
您能告訴我如何檢查用戶是否註冊,如果是,請獲取用戶名和真實姓名。或者給我鏈接到適當的文件。
謝謝。
我問了一個關於獲取wordpress網站標題here的問題。如何在插件開發期間獲取用戶信息?
另外我需要獲取用戶信息,但沒有從文檔doesn工作,如果我不使用網絡模式,但開發插件。所以我不能使用wp_get_current_user()
或is_user_logged_in()
或get_userdata()
。
我無法找到關於此的文檔。
您能告訴我如何檢查用戶是否註冊,如果是,請獲取用戶名和真實姓名。或者給我鏈接到適當的文件。
謝謝。
只需傳遞用戶標識(int)參數,它就像一個魅力。
<?php $user_info = get_userdata(1);
echo 'Username: ' . $user_info->user_login . "\n";
echo 'User level: ' . $user_info->user_level . "\n";
echo 'User ID: ' . $user_info->ID . "\n";
源 - >欲瞭解更多信息
如果我使用wp_loaded行動,讓WordPress的負載充分,它的工作原理,
function myfunction() {
global $current_user;
get_currentuserinfo();
echo 'Username: ' . $current_user->user_login . "\n";
echo 'User email: ' . $current_user->user_email . "\n";
echo 'User first name: ' . $current_user->user_firstname . "\n";
echo 'User last name: ' . $current_user->user_lastname . "\n";
echo 'User display name: ' . $current_user->display_name . "\n";
echo 'User ID: ' . $current_user->ID . "\n";
}
add_action('wp_loaded', 'myfunction');
...
你試過 –
messified
2013-02-12 01:45:59
編號是$ userid wordpress中的全局變量? – Simon 2013-02-12 01:46:41
$ userid (整數)(必需)應該檢索其數據的用戶的ID。 默認:無Source-> http://codex.wordpress.org/Function_Reference/get_userdata – messified 2013-02-12 01:47:49