对于所有可以使用的作者元详细信息the_author_meta
http://codex.wordpress.org/Template_Tags/the_author_meta
<a href="<?php the_author_meta(\'user_url\', $current_user->ID);?>"><?php the_author_meta(\'display_name\', $current_user->ID);?></a>
如果用于用户元用途
get_user_meta
http://codex.wordpress.org/Function_Reference/get_user_meta
<a href="<?php echo get_user_meta($current_user->ID, \'user_url\');?>"><?php echo get_user_meta($current_user->ID, \'display_name\');?></a>