我在wishlist成员插件代码中需要帮助。我需要获取已登录用户的级别ID。
<?php global $current_user;
get_currentuserinfo();
$my_user_id= $current_user->ID;
$mywlmapi= new WLMAPI();
$my_user_levels=$mywlmapi->GetUserLevels($my_user_id );
var_dump( $my_user_levels);
?>
现在的输出是:array(1) { [1458795207]=> string(16) "Bronze per month" }
我需要在var $levelid = 1458795207
中存储1458795207,
所以我可以echo $levelid
并获得级别ID。
提前致谢。