固定的我使用了代码:
<div class="panel callout radius">
<?php echo get_avatar( get_the_author_meta( \'user_email\' ), \'96\' ); ?>
<div class="right">
<a href="https://twitter.com/<?php the_author_meta( \'twitter\' ); ?>" target="_blank"><i class="fi-social-twitter size-24"></i></a>
<a href="<?php the_author_meta( \'facebook\' ); ?>" target="_blank"><i class="fi-social-facebook size-24"></i></a>
<a href="mailto:<?php the_author_meta( \'email\' ); ?>"><i class="fi-mail size-24"></i></a>
然后我发现这个函数只能在单个博客页面(single.php)中使用。所以我按照官方指南给一个像库拉索这样的人打电话:
<?php get_header();
global $curauth;
$curauth = (isset($_GET[\'author_name\'])) ? get_user_by(\'slug\', $author_name) : get_userdata(intval($author));
?>
然后它现在起作用了。谢谢