Useless Stuff
Custom avatar images in WordPress
Posted 13 years in Useless Stuff |
Comments (83)
This is a short walktrough on how to let your website users upload their own avatars, without using a plugin.
First, define the maximum image sizes (note that we will only downsize, smaller images will get browser-resized):
define(‘MAX_AVATAR_WIDTH’, 96);
define(‘MAX_AVATAR_HEIGHT’, 96);
This [...]