菜鸡源码,专注精品下载!
当前位置:首页 > 建站教程 > 建站知识

实现WordPress自定义用户头像的代码

发布时间:2024-01-05  栏目:建站知识   浏览:   分类:wordpress教程

要在WordPress中自定义用户头像,可以通过以下步骤实现: 1. 在主题的`functions.php`文件中添加以下代码: ```php add_action('wp_head', 'custom_user_avatar'); function custom_user_avatar() { if (is_author()) { $user_id = get_the_author_meta('ID'); $user_avatar = get_user_meta($user_id, 'avatar', true); if ($user_avatar) { $avatar_url = get_avatar_url($user_id); echo ""; } } } ``` 2. 将上述代码添加到你的主题的`functions.php`文件中。 3.

经常有用户给我反应,要求增加自定义头像功能。WordPress的头像可以通过统一gravatar服务设置,但很多用户反应说太麻烦,想要自定义效果。没办法,为了满足你们,特意写了这篇文章。纯代码实现WordPress自定义用户头像功能,不是插件,当然wordpress管理后台也没有设置的地方,此功能适用于前端用户,非要管理员使用也是可以的,自己想想办法吧。

头像是一张图像,自定义就需要保存用户的头像到服务器。这里上传图像到服务器可以使用wordpress提供的函数,也可以使用PHP提供的基础文件上传函数,这样做需要注意安全,别被传马了。

<?phpif('POST'!=$_SERVER['REQUEST_METHOD']){header('Allow:POST');header('HTTP/1.1405MethodNotAllowed');header('Content-Type:text/plain');exit;}header('Content-Type:application/json;charset=utf-8');requiredirname(__FILE__).'/../../../../wp-load.php';if(!is_user_logged_in()){print_r(json_encode(array('error'=>1,'msg'=>'必须登录才能操作')));exit;}global$current_user;$path=WP_CONTENT_DIR.'/uploads/avatar/';//在uploads目录下创建一个avatar目录if(!is_dir($path)){mkdir($path);}extract($_POST);$pre=strrchr($_FILES['file']["name"],".");if($_FILES['file']["error"]>0){switch($_FILES['file']["error"]){case1:print_r(json_encode(array('msg'=>'文件大小超过php.ini设置的大小2M')));exit;break;case2:print_r(json_encode(array('msg'=>'文件大小超过表单设置的大小')));exit;case3:print_r(json_encode(array('msg'=>'文件只有部分被上传')));exit;break;case4:print_r(json_encode(array('msg'=>'没有文件被上传')));exit;break;case6:print_r(json_encode(array('msg'=>'找不到临时文件夹')));exit;break;case7:print_r(json_encode(array('msg'=>'文件写入失败')));exit;break;}}//图片类型过滤$pic_arr=array("image/jpeg","image/jpg","image/pjpeg","image/png","image/x-png");if(!in_array($_FILES['file']["type"],$pic_arr)){print_r(json_encode(array('msg'=>'图片类型不允许')));exit;}//图片大小过滤if($_FILES['file']["size"]>(1*1024*1024)){print_r(json_encode(array('msg'=>'图片大小不允许')));exit;}$img_name=base64_encode($current_user->user_email).$pre;if(is_uploaded_file($_FILES['file']["tmp_name"])){move_uploaded_file($_FILES['file']["tmp_name"],$path.$img_name);$img_url=WP_CONTENT_URL.'/uploads/avatar/'.$img_name;update_user_meta($current_user->ID,'tb_local_avatar',$img_url);print_r(json_encode(array('error'=>0)));exit;}

上面是我测试自定义头像功能使用的代码,没考虑太多安全问题,使用时需要谨慎。

相关文章

    无相关信息
评论
建站知识
建站知识
使用技巧
调试安装
运营推广