WordPress获取文章作者the_author()无效问题解决
WordPress版本不同,遇到问题可能也不同,在文章页获取文章作者the_author()无效,原因是the_author()需要在循环中使用,即需要在
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
the_author();
<?php endif; ?>
如在single页面上,不写循环,the_author();获取的将是空白,解决方法,用get_the_author_meta()来获取作者信息。
<?php echo get_the_author_meta( 'displ