访问worpress中当前用户的usermeta描述字段对我很挑剔。我使用描述作为生物领域。这是我在下面的内容。显示名称部分工作正常,但与获取描述无关。我知道$ bio [0] - >描述不正确,但这是我在发布之前尝试的最后一件事。也许我只是累了...
<?php
global $current_user;
get_currentuserinfo();
$bio = get_usermeta( $current_user, $description );
echo 'Your Name: ' . $current_user->display_name . "\n";
?>
Your Bio: <?php echo $bio[0]->description ?>