Is it possible to change the user avatar in WordPress programmatically? I\'m asking because I\'m facing a problem right now in displaying the user avatar in WordPress multis
Most likely somewhere the get_avatar filter is being called and doing something. I recommend searching your plugins and themes for get_avatar and looking at things that look like: add_filter ('get_avatar', .....
Otherwise, you can write your own behavior with the code below.