什么时候需要Get_CurrentUserInfo()?

时间:2014-04-16 作者:Nabil Kadimi

我知道你通常在global $current_user, 但有时不管你有没有,它都会起作用。

那么需要什么条件呢?

示例代码:

function plugin_admin_init(){
    global $current_user;

    // Make sure global is set, if not set it.
    get_currentuserinfo();
    /* ... */
}

1 个回复
SO网友:TheDeadMedic

我个人会使用wp_get_current_user(), 无全局变量:

function plugin_admin_init() {
    $user = wp_get_current_user();
}

结束

相关推荐

wp_list_tables bulk actions

如何在扩展的WP\\U List\\U表中触发批量操作。我一直在将以下批量操作添加到may table的选择框中,但在Apply上不会发生任何事情下面是我如何添加批量操作的function get_bulk_actions() { $actions = array( \'delete\' => \'Delete\', \'parsing\' => \'Parsen\' );