// 自动ZBP图片ALT itbulu.com整理自网络
function 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);
}将代码添加到include.php主题这文件最后,然后再添加钩子。
Add_Filter_Plugin('Filter_Plugin_ViewPost_Template','imgAlt');这个一般是添加的是网站标题作为ALT,至少比没有好一些。