不用修改程序內(nèi)核文件,不影響電腦站和手機(jī)站文章內(nèi)容頁(yè)的文章內(nèi)容輸出,增加個(gè)自定義方法來(lái)解決織夢(mèng)MIP文章內(nèi)容頁(yè)圖片適" />

国产成人精品无码青草_亚洲国产美女精品久久久久∴_欧美人与鲁交大毛片免费_国产果冻豆传媒麻婆精东

15158846557 在線咨詢 在線咨詢
15158846557 在線咨詢
所在位置: 首頁(yè) > 營(yíng)銷資訊 > 網(wǎng)站運(yùn)營(yíng) > 源起網(wǎng)源碼模板 織夢(mèng)內(nèi)容頁(yè)圖片適配百度MIP規(guī)范

源起網(wǎng)源碼模板 織夢(mèng)內(nèi)容頁(yè)圖片適配百度MIP規(guī)范

時(shí)間:2023-06-06 17:15:01 | 來(lái)源:網(wǎng)站運(yùn)營(yíng)

時(shí)間:2023-06-06 17:15:01 來(lái)源:網(wǎng)站運(yùn)營(yíng)

源起網(wǎng)源碼模板 織夢(mèng)內(nèi)容頁(yè)圖片適配百度MIP規(guī)范:源起網(wǎng)源碼模板 織夢(mèng)內(nèi)容頁(yè)圖片適配百度MIP規(guī)范

不用修改程序內(nèi)核文件,不影響電腦站和手機(jī)站文章內(nèi)容頁(yè)的文章內(nèi)容輸出,增加個(gè)自定義方法來(lái)解決織夢(mèng)MIP文章內(nèi)容頁(yè)圖片適配百度MIP規(guī)范

  1. <img 替換成 <mip-img
  2. width|height 去除圖片寬高
  3. style 去除內(nèi)聯(lián)樣式
  4. /uploads/ 相對(duì)路徑圖片路徑替換成絕對(duì)路徑
打開(kāi) /include/extend.func.php 在最下面加入個(gè)方法

/**
* MIP文章內(nèi)容頁(yè)圖片適配百度MIP規(guī)范
*
* @access public
* @param string $content 文章內(nèi)容
* @return string
*/
function mip($content){
global $cfg_basehost;
preg_match_all('/<img (.*?)/>/', $content, $images);
if(!is_null($images)) {
foreach($images[1] as $index => $value){
$mip_img = str_replace('<img', '<mip-img', $images[0][$index]);
$mip_img = str_replace('>', '></mip-img>', $mip_img);
$mip_img = preg_replace('/(width|height)="/d*"/s/', '', $mip_img );
$mip_img = preg_replace('/ style=/".*?/"/', '',$mip_img);
$content = str_replace($images[0][$index], $mip_img, $content);
}
}
preg_match_all('/ style=/".*?/"/', $content, $style);
if(!is_null($style)) {
foreach($style[0] as $index => $value){
$mip_style = preg_replace('/ style=/".*?/"/', '',$style[0][$index]);
$content = str_replace($style[0][$index], $mip_style, $content);
}
}
$content = str_replace('/uploads/', $cfg_basehost.'/uploads/', $content);
return $content;
}
內(nèi)容頁(yè)模板標(biāo)簽寫法

{dede:field.body function=mip(@me)/}
源起網(wǎng)源碼模板 織夢(mèng)內(nèi)容頁(yè)圖片適配百度MIP規(guī)范

關(guān)鍵詞:規(guī)范,圖片,內(nèi)容,模板

74
73
25
news

版權(quán)所有? 億企邦 1997-2025 保留一切法律許可權(quán)利。

為了最佳展示效果,本站不支持IE9及以下版本的瀏覽器,建議您使用谷歌Chrome瀏覽器。 點(diǎn)擊下載Chrome瀏覽器
關(guān)閉