搜索引擎对网站图片SEO的友好性很大取决于alt属性,使用此函数可以自动为文章图片添加alt属性为文章标题! 首先在include.php加入此函数:
function APPID_imgalt(&$template){
global $zbp;
$article = $template->GetTags('article');
$pattern = "/<img(.*?)src=('|\")([^>]*).(bmp|gif|jpeg|jpg|png|swf)('|\")(.*?)>/i";
$replacement = '<img alt="'.$article->Title.'" src=$2$3.$4$5/>';
$content = preg_replace($pattern, $replacement, $article->Content);
$article->Content = $content;
$template->SetTags('article', $article);
}然后挂载如下接口:
Add_Filter_Plugin('Filter_Plugin_ViewPost_Template','APPID_imgalt');