我将为我博客中的所有用户创建一个用户配置文件页面。我认为,最好为所有用户修改作者页面。
<?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/作者/用户名
以上链接仅适用于作者。我如何为所有用户修改该页面,即使他们没有发布任何帖子(甚至角色是订阅者)。