Aşağıdaki fonksiyonu kullanarak basit bir şekilde rastgele avatar atayabilirsiniz.
function rastgele_avatar() {
$images = array(
'https://site.com/resim1.jpg',
'https://site.com/resim2.jpg',
'https://site.com/resim3.jpg',
'https://site.com/resim4.jpg',
'https://site.com/resim5.jpg',
);
return $images[ array_rand( $images, 1 ) ];
}
add_filter( 'get_avatar_url', 'rastgele_avatar' );