Forums

[resolved] Change class avatar (2 posts)

  1. Okoth1
    Member
    Posted 1 year ago #

    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

  2. Okoth1
    Member
    Posted 1 year ago #

    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);
    }

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags