Wordpress default alt attribute

function add_alt_tags($content) { global $post; preg_match_all('/<img (.*?)\/>/', $content, $images); if(!is_null($images)) { foreach($images[1] as $index => $value) { if(!preg_match('/alt=/', $value)) { $new_img = str_replace('<img', '<img alt="'.$post->post_title.'"', $images[0][$index]); $content = str_replace($images[0][$index], $new_img, $content); } } } return $content; } add_filter('the_content', 'add_alt_tags', 99999);
Wordpress
Voici une snippet à placer dans le fichier functions.php de votre thème. Ce code recherche les images n'ayant pas d'attribut "alt" et y ajoute par défaut le titre du billet dans lequel s'affiche l'image.

SOURCE : http://www.paulund.co.uk/add-missing-alt-tags-to-wordpress-images

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.