如何修改所有用户的作者页面?

时间:2014-07-22 作者:Sasa1234

我将为我博客中的所有用户创建一个用户配置文件页面。我认为,最好为所有用户修改作者页面。

<?php
if(is_author()) { 
echo get_avatar( get_the_author_meta( \'user_email\' ), apply_filters( \'themejunkie_author_bio_avatar_size\', 60 ) ); ?>
<h3><?php the_author(); ?></h3>
<?php the_author_meta( \'description\' );} ?>
我在存档中使用上述代码。php文件。

前作者页面:mysite。com/作者/用户名

以上链接仅适用于作者。我如何为所有用户修改该页面,即使他们没有发布任何帖子(甚至角色是订阅者)。

1 个回复
SO网友:corygibbons

要获取当前作者存档页上显示的用户数据,可以使用:

$author = get_user_by( \'slug\', get_query_var( \'author_name\' ) );
$user_info = get_userdata( $author->ID );
有关返回内容的更多信息:http://codex.wordpress.org/Function_Reference/get_userdata

在那里,您可以使用所需的用户详细信息:

<?php echo $user_info->user_firstname . \' \' . $user_info->user_lastname; ?>

结束

相关推荐