2013-02-12 44 views
0

我問了一個關於獲取wordpress網站標題here的問題。如何在插件開發期間獲取用戶信息?

另外我需要獲取用戶信息,但沒有從文檔doesn工作,如果我不使用網絡模式,但開發插件。所以我不能使用wp_get_current_user()is_user_logged_in()get_userdata()

我無法找到關於此的文檔。

您能告訴我如何檢查用戶是否註冊,如果是,請獲取用戶名和真實姓名。或者給我鏈接到適當的文件。

謝謝。

+0

你試過 messified 2013-02-12 01:45:59

+0

編號是$ userid wordpress中的全局變量? – Simon 2013-02-12 01:46:41

+0

$ userid (整數)(必需)應該檢索其數據的用戶的ID。 默認:無Source-> http://codex.wordpress.org/Function_Reference/get_userdata – messified 2013-02-12 01:47:49

回答

1

只需傳遞用戶標識(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"; 

源 - >欲瞭解更多信息

http://codex.wordpress.org/Function_Reference/get_userdata

+0

好吧,但我如何獲得用戶ID? – Simon 2013-02-12 02:09:29

+0

我想從你的角度看出來,但我幾乎不可能測試,我會試試這個 - > http://codex.wordpress.org/Function_Reference/get_currentuserinfo - >這似乎也需要wp-包括 – messified 2013-02-12 02:20:39

+0

我找到了解決方案。我發佈了答案。非常感謝您的幫助。 – Simon 2013-02-12 02:29:33

1

如果我使用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'); 
... 
相關問題