欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > 帝国cms教程 >
帝国cms教程

帝国cms后台发布内容自动把内容图片的alt和title替换为文章标题

(元素模板) / 2022-10-10 08:31
帝国cms如何让内容图片自动加上文章标题
操作方法如下:
1.把下面的代码放到/e/class/userfun.php (放到最后?>的前面)
帝国CMS之esub()截取字段函数
帝国CMS模板网下面的帝国CMS教程栏目为您提供了帝国CMS之esub()截取字段函数
function user_imgalt($mid,$f,$isadd,$isq,$value,$cs){
$title=$_POST['title'];
$htmls=$value;
$pattern = "/<img[^>]+>/"; 
preg_match_all($pattern, $htmls, $matches); 
for ($i=0; $i<=count($matches[0]); $i++) {
  preg_match_all("/alt=".+?"/",$matches[0][$i],$altimg); 
  preg_match_all("/title=".+?"/",$matches[0][$i],$titleimg); 
$t_alt=count($altimg[0]);
if($t_alt==0){
$htmls=str_replace("<img","<img alt="{$title}"",$htmls);
$htmls=str_replace("<img","<img title="{$title}"",$htmls);
}
}   
return $htmls;
}
2.在模型里正文字段一般是newstext(也可以是其它字段),在字段处理函数文本框填上user_imgalt
3.这样在帝国cms后台发布信息的时候就可以自动替换图片alt和title属性为信息标题了!
Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com