欢迎访问服务器技术网-www.fuwuqijishu.com

ZBLOG PHP自动添加图片ALT标签的实现方法

网站建设 fuwuqijishu 2年前 (2022-09-04) 37次浏览 0个评论 扫描二维码

默认情况下,ZBLOG PHP 上传的图片ALT标签是图片名称。网友有提到是不是可以不要每次手工修改,能够直接变成标题的ALT标签。于是找找网上有没有解决办法,对于WordPress的ALT标签是可以通过插件或者无插件代码实现的(这里方法),对于ZBLOG PHP程序应该也是可以实现。

function autoimgalt(&$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);
}

这里我们需要到当前的ZBLOG PHP主题的”include.php”文件中添加代码。

Add_Filter_Plugin('Filter_Plugin_ViewPost_Template','autoimgalt');

然后我们需要在主题的激活接口添加(ActivePlugin_主题ID())。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2212.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900