alt text for play button
-
Google Pagespeed https://pagespeed.web.dev/ reports a lack of alt attribute on the play button. Can you add some alt text to avoid dinging a page’s accessibility score?
--- misc_functions.php.bak 2023-02-08 11:52:32.658010207 -0500 +++ misc_functions.php 2023-02-08 11:52:56.174009669 -0500 @@ -302,7 +302,7 @@ $img_src = 'https://img.youtube.com/vi/'.$video_id.'/0.jpg'; $anchor_replacement = '<div class="wpvl_auto_thumb_box_wrapper"><div class="wpvl_auto_thumb_box">'; $anchor_replacement .= '<img src="'.esc_url($img_src).'" class="video_lightbox_auto_anchor_image" alt="'.wp_vid_lightbox_sanitize_alt_text($alt).'" />'; - $anchor_replacement .= '<div class="wpvl_auto_thumb_play"><img src="'.WP_VID_LIGHTBOX_URL.'/images/play.png" class="wpvl_playbutton" /></div>'; + $anchor_replacement .= '<div class="wpvl_auto_thumb_play"><img src="'.WP_VID_LIGHTBOX_URL.'/images/play.png" class="wpvl_playbutton" alt="Play Video"/></div>'; $anchor_replacement .= '</div></div>'; } else if($atts['vid_type']=="vimeo")
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘alt text for play button’ is closed to new replies.