Change User Avatar Programmatically in Wordpress

前端 未结 3 1685
说谎
说谎 2021-01-14 00:55

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

3条回答
  •  孤城傲影
    2021-01-14 01:11

    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.

提交回复
热议问题