洞悉互聯網前沿資訊,探尋網站營銷規律
作者:Smileby陌少羽 | 2019-04-08 16:35 |點擊:
大部分手機站都是自適應的,這樣圖片就不能有寬高限制,我們添加文章圖片時很多時候都會有width height style這些屬性在里面,在手機站上要把它們清除,又不能影響電腦站的,不修改程序內核文件,我們可以在手機版內容頁模板里,
把手機站內容頁模板把調用文章內容的標簽
{dede:field.body/}
改成
{dede:field.body runphp=yes}
global $cfg_basehost;
$str = @me;
$search = '/(
$search1 = '/(
$search2 = '#()#i';
$search3 = '#()#i';
$content = preg_replace($search,'$1$3',$str);
$content = preg_replace($search1,'$1$3',$content);
$content = preg_replace($search2,'$1$2',$content);
$content = preg_replace($search3,'$1$2',$content);
@me = str_replace('/uploads/allimg/', $cfg_basehost.'/uploads/allimg/', $content);
{/dede:field.body}