dede织梦手机站去除文章内容中图片的宽高达到自适应

摘要:大部分手机站都是自适应的,这样图片就不能有宽高限制,我们添加文章图片时很多时候都会有width height style,在手机站上要把它们清除,又不能影响电脑站的大部分手机站都是自适应的,这样图片就不能有宽高限制,我们添加文章图片时很多时候都会有width height style这些属性在里面,在手机站上要把它们清除,又不能影响电脑站的,不修改程序内核文件,我们可以在手机版内容页模板里,
 
把调用文章内容的标签
 
1 {dede:field.body/}
改成
01 {dede:field.body runphp=yes}
02 global $cfg_basehost;
03 $str = @me;
04 $search = '/(<img.*?)width=(["\'])?.*?(?(2)\2|\s)([^>]+>)/is';
05 $search1 = '/(<img.*?)height=(["\'])?.*?(?(2)\2|\s)([^>]+>)/is';
06 $search2 = '#(<img.*?style=".*?)width: \d+px;([^"]*?.*?>)#i';
07 $search3 = '#(<img.*?style=".*?)height: \d+px;([^"]*?.*?>)#i';
08 $content = preg_replace($search,'$1$3',$str);
09 $content = preg_replace($search1,'$1$3',$content);
10 $content = preg_replace($search2,'$1$2',$content);
11 $content = preg_replace($search3,'$1$2',$content);
12 @me = str_replace('/uploads/allimg/', $cfg_basehost.'/uploads/allimg/', $content);//手机版图片使用绝对路径
 
13 {/dede:field.body}

推荐模板

上一篇:织梦dedecms教您如何更换模板文件

下一篇:汇总dede织梦cms后台登陆验证码错误或不显示解决方法

猜你喜欢

dede织梦模板网