黄聪

论SEO对人类的重要性,请看我的博客:hcsem.com

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
add_filter( 'get_avatar' , 'my_custom_avatar' , 1 , 5 );
function my_custom_avatar( $avatar, $id_or_email, $size, $default, $alt) {
    
    if ( ! empty( $id_or_email->user_id ) ) {
        $avatar = "http://static.cnblogs.com/images/logo_small.gif";
    }else{
        $avatar = "http://static.cnblogs.com/images/logo_small.gif";
    }
    $avatar = "<img alt='{$alt}' src='{$avatar}' class='avatar avatar-{$size} photo' height='{$size}' width='{$size}' />";

    return $avatar;
}

 

posted on 2015-01-21 18:36  黄聪  阅读(2118)  评论(0编辑  收藏  举报