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

时间:2024年01月29日

/

来源:网络

/

编辑:佚名

操作方法如下:
1.把下面的代码放到/e/class/userfun.php (放到最后?>的前面)
  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 如下图:

帝国cms后台发布内容自动把内容图片的alt和title替换为文章标题
3.这样在帝国cms后台发布信息的时候就可以自动替换图片alt和title属性为信息标题了!
猜你需要

豫ICP备2021026617号-1  豫公网安备:41172602000185   Copyright © 2021-2028 www.78moban.com/ All Rights Reserved

本站作品均来自互联网,转载目的在于传递更多信息,并不代表本站赞同其观点和对其真实性负责。如有侵犯您的版权,请联系 1565229909#qq.com(把#改成@),我们将立即处理。