操作方法如下

1.把下面的代码放到/e/class/userfun.php (放到最终?>的前面)

functionuser_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","<imgalt="{$title}"",$htmls);
$htmls=str_replace("<img","<imgtitle="{$title}"",$htmls);
}
}
return$htmls;
}

2.在模型里正文字段一般是newstext(也可所以其它字段),在字段处理函数文本框填上user_imgalt 如下图:


3.发布信息的时分就可以主动替换图片alt和title特点为信息标题了!

声明:有的资源均来自网络转载,版权归原作者所有,如有侵犯到您的权益 请联系邮箱:123456@qq.com 我们将配合处理!

原文地址:帝国CMS二次开发自动把内容图片的alt和title替换为标题发布于2022-06-18 07:43:38

相关推荐