• Resolved Suyta

    (@suygenneris)


    Hi there
    WAVE says long alternative text for images.
    So I added $img_alt=substr($img_alt,0,10);
    but I will have problems on future updates.
    Is there some hook to apply?
    Please help.
    Thanks!

    • This topic was modified 4 years, 10 months ago by Suyta.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Craig at Smash Balloon

    (@craig-at-smash-balloon)

    Hey Suyta,

    There was a hook added for this in version 2.1.5 in fact. You can use the filter “sbi_img_alt” to change the alt text for each image.

    function sb_change_alt( $img_alt ) {
        return substr( $img_alt,0,10 );
    }
    add_filter( 'sbi_img_alt', 'sb_change_alt', 10, 1 );

    Let me know if you have more questions!

    – Craig

    Thread Starter Suyta

    (@suygenneris)

    Hi Craig ??
    Perfect, thanks a lot!
    —Suyta

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Img Alternative Text ADA compliance’ is closed to new replies.