如何在wordpress中定义样本化身

时间:2015-05-11 13:42:46

标签: wordpress templates avatar

我想在wordpress的旁边栏中显示最后的评论,如果发送评论的人有gavatar它会显示但如果他没有,在我的模板中有一个默认图片如下: enter image description here

我怎么能将这张照片定制?并展示我最喜欢的头像?

2 个答案:

答案 0 :(得分:0)

get_avatar()函数有一个$ default参数,允许您为自己指定的图像设置自定义网址

<?php echo get_avatar( $id_or_email, $size, $default, $alt ); ?>

https://codex.wordpress.org/Function_Reference/get_avatar

答案 1 :(得分:0)

添加到function.php

if(!function_exists('custom_avatar')){
function custom_avatar($avatar_defaults){
$new_default_icon = get_bloginfo('template_directory') . '/custom/images/new-avatar.png';
$avatar_defaults[$new_default_icon] = 'My Custom Avatar';
return $avatar_defaults;
    }
add_filter('avatar_defaults','custom_avatar');
}