如果你沒有手動添加圖片alt的習慣,那麼我相信你是需要這個功能的,wordpress默認上傳圖片後圖片名即為alt,像我這種習慣把圖片命名成1234的亞歷山大,於是就批量轉換下alt標簽吧。
我采用的是文章標題加站點名稱的方式,雖然如果一片文章內圖片較多的話不太標准,但是我大部分文章都是1張配圖,於是用這個沒什麼壓力。
圖片優化也是wordpress seo的一種重要手段,不需要額外做什麼,只需要復制粘貼下就可以達到效果,何樂而不為?
下面的代碼直接加到functions.php中即可
/** Auto-Generate ALT tag for images */
function image_alt_tag($content){
global $post;preg_match_all('/<img (.*?)\/>/', $content, $images);
if(!is_null($images)) {foreach($images[1] as $index => $value)
{
$new_img = str_replace('<img', '<img alt="'.get_the_title().'-'.get_bloginfo('name').'"', $images[0][$index]);
$content = str_replace($images[0][$index], $new_img, $content);}}
return $content;
}
add_filter('the_content', 'image_alt_tag', 99999);