为了让你的「」网站图片更好的被搜索引擎收录以及搜索到通常需要给图片加上 alt 和 title 描述,但是每个图片都手动添加就太麻烦了,所以我们可以通过插件或者代码来实现自动添加 alt 和 title。
打开你主题模板的 functions.php文件,把下面的代码添加到里面:
function image_alttitle( $imgalttitle ){
global $post;
$category = get_the_category();
$flname=$category[0]->cat_name;
$btitle = get_bloginfo();
$imgtitle = $post->post_title;
$imgurl = "]*src=(\"??)([^\" >]*?)\\1[^>]*>";
if(preg_match_all("/$imgurl/siu",$imgalttitle,$matches,preg_set_order)){
if( !empty($matches) ){
for ($i=0; $i < count($matches); $i ){
$tag = $url = $matches[$i][0];
$j=$i 1;
$judge = '/title=/';
preg_match($judge,$tag,$match,preg_offset_capture);
if( count($match) < 1 ) $alturl = ' alt="'.$imgtitle.' '.$flname.' 第'.$j.'张" title="'.$imgtitle.' '.$flname.' 第'.$j.'张-'.$btitle.'" '; $url = rtrim($url,'>');
$url .= $alturl.'>';
$imgalttitle = str_replace($tag,$url,$imgalttitle);
}
}
}
return $imgalttitle;
}
add_filter( 'the_content','image_alttitle');
大家可以根据自己的图片优化来修改,上面代码默认是: alt 属性为“文章标题 分类名称 第几张”,title 属性为“文章标题 分类名称 第几张-站点名称”。
# 更多技巧,请关注「专题」