我找到了组成bp\\u post\\u author\\u avatar()的函数,然后将类型更改为full。将此功能置于函数中。php并使用新函数调用模板中的post-author头像。
function fod_post_author_avatar() {
global $post;
if ( function_exists(\'bp_core_fetch_avatar\') ) {
echo apply_filters( \'bp_post_author_avatar\', bp_core_fetch_avatar( array( \'item_id\' => $post->post_author, \'type\' => \'full\' ) ) );
} else if ( function_exists(\'get_avatar\') ) {
get_avatar();
}
}