最合适的回答,由SO网友:Orlando P. 整理而成
功能get_the_author_meta(\'ID\')
将返回当前帖子的作者ID。
这意味着这条线应该可以工作。
get_avatar( get_the_author_meta( \'ID\' ), 120);
这行不通
get_avatar( get_the_author_meta( \'4\' ), 120);
因为您试图在用户对象内获取名为“4”的属性,但该属性不存在。
如果你想获得用户4的头像,你可以使用。
get_avatar( 4, 120);
因为get\\u avatar需要
$user_id
或
$email
作为第一个参数
$size
作为第二个。
WordPress文档使用的最后一个注释是,请检查html中的格式错误。
get_avatar( get_the_author_meta( \'ID\' ), 32 );