帝国cms基于自定义伪静态插件的百度MIP改造 - 正文内替换
2019-06-06 站长 站长日志
目的:把编辑器内的img a标签等替换为mip标准格式。
1、打开/e/class/userfun.php添加处理函数:
function NewsTextReplace($add){ $add['newstext'] = preg_replace('/<img.*?src="(.*?)".*?>/is', '<mip-img alt="" src="$1"></mip-img>', stripslashes($add['newstext'])); $add['newstext'] = preg_replace('/<a.*?href="(.*?)".*?<\/a>/is', '<a data-type="mip" data-title="' . $add['title'] . '" href="$1"></a>', $add['newstext']); $add['newstext'] = addslashes($add['newstext']); return $add; } |
在前面添加代码:
$r = NewsTextReplace($r); |
此函数可以处理所有此信息的字段内容。
更多的需要处理请参考处理函数自行改写。