STRATO-apps/wordpress_03/app/wp-content/themes/blocksy/inc/integrations/avatars.php
SHA-256: d0461cbfa6b2f2437ab5def07f59f27ef0948b981ba6ebea3e412bd0c789c437
<?php
if (! function_exists('blocksy_get_avatar_alt_for')) {
function blocksy_get_avatar_alt_for($user_id) {
global $simple_local_avatars;
if ($simple_local_avatars) {
$alt = $simple_local_avatars->get_simple_local_avatar_alt($user_id);
if (! empty($alt)) {
return $alt;
}
}
return blocksy_get_the_author_meta('display_name', $user_id);
}
}