• Resolved Okoth1

    (@okoth1)


    With add_filter I want to change the class from photo to comment-photo but I don’t have a clue how. Anyone who can help me out?

    It’s about this part in pluggable.php (line 1697)

    $avatar = "<img alt='{$safe_alt}' src='{$out}' class='avatar avatar-{$size} photos' height='{$size}' width='{$size}' />";

    Function is get_avatar

    Thanks.
    Okoth

Viewing 1 replies (of 1 total)
  • Thread Starter Okoth1

    (@okoth1)

    Thanks again for all the help!

    add_filter('get_avatar', 'remove_photo_class');
    function remove_photo_class($avatar) {
        return str_replace(' photo', ' comment-photo', $avatar);
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Change class avatar’ is closed to new replies.