如果描述包含文本,是否只能显示作者的姓名和描述(又名bio)?
此代码不起作用(它不返回名称或描述),但希望可以对其进行编辑以实现此目标:
<?php
$authorDesc = the_author_meta($post->ID, \'description\', true);
if (!empty($authorDesc)) {
?>
<em>by <?php the_author(); ?></em>
<span><?php the_author_meta(\'description\'); ?></span>
<?php } ?>