我已经在我的作者中实现了这段代码。php文件,以显示作者的用户名:
<?php printf( "<h4>The blog of<a href=\'" . get_author_posts_url( get_the_author_meta( \'ID\' ) ) . "\' title=\'" . esc_attr( get_the_author() ) . "\' rel=\'me\'>" . get_the_author() . "</a></h4>" ); ?>
它正确显示发布文章的用户的用户名,但不幸的是,当用户没有发布任何内容时,它会显示另一个用户名。
有没有办法解决这个问题?谢谢你的帮助!