欢迎来到欣怡建站!我们致力于提供优质的网站建站服务
注册

织梦怎么让文章中图片自动添加ALT属性

相关案例演示

打开/include/extend.func.php文件

在最下面加入:
//文章body优化替换 function replaceurl($newurl) { global $dsql,$id; //获取图片附加表imgurls字段内容进行处 $row = $dsql->GetOne("SELECT title FROM dede_archives where id=$id"); //替换图片Alt为文档标题 $newurl=str_ireplace(array('alt=""','alt=/'/''),'',$newurl); $newurl=preg_replace("@ [/s]{0,}alt[/s]{0,}=[/"'/s]{0,}[/s/S]{0,}[/"'/s] @isU"," ",$newurl); $newurl=str_ireplace("<img " ,"<img alt=/"".$row['title']."/"",$newurl); //去掉结尾空格 $newurl=str_ireplace(" /","/",$newurl); $newurl=str_ireplace(" />","/>",$newurl); return $newurl; }  

前端调用代码:

{dede:field.body function=’replaceurl(@me)’/}

需要图片中的style width height属性就把上面代码修改成下面的代码
//文章body优化替换 function replaceurl($newurl) { global $dsql,$id; //获取图片附加表imgurls字段内容进行处 $row = $dsql->GetOne("SELECT title FROM dede_archives where id=$id"); //去掉img的width和height $newurl=preg_replace('/style=/"width/:(.*)/"/','',$newurl); //替换图片Alt为文档标题 $newurl=str_ireplace(array('alt=""','alt=/'/''),'',$newurl); $newurl=preg_replace("@ [/s]{0,}alt[/s]{0,}=[/"'/s]{0,}[/s/S]{0,}[/"'/s] @isU"," ",$newurl); $newurl=str_ireplace("<img " ,"<img alt=/"".$row['title']."/"",$newurl); //去掉结尾空格 $newurl=str_ireplace(" /","/",$newurl); $newurl=str_ireplace(" />","/>",$newurl); return $newurl; }  

作者:欣怡建站 挑错 时间:2021-04-20 08:46
首先声明,只要是我们的vip会员所有源码均可以免费下载,不做任何限制
☉本站的源码不会像其它下载站一样植入大量的广告。为了更好的用户体验以后坚持不打水印
☉本站只提供精品源码,源码在于可用,不在多!!希望在这里找到你合适的。
☉本站提供的整站程序,均带数据及演示地址。可以在任一源码详情页查看演示地址
☉本站所有资源(包括源码、模板、素材、特效等)仅供学习与参考,请勿用于商业用途。
☉如有其他问题,请加网站客服QQ(984818011)进行交流。
相关教程
在线客服