SeaCMS获取当前页面URL以使用Meta标签移动适配
编辑 /include/mkhtml.func.php
文件,找到:
function makePlayByData($vType,$vId,$playArr,$content,$sdate,$enname,$stringecho)
{
if($GLOBALS['cfg_ismakeplay']==1){
for($i=0;$i<$playArr[0];$i++)
{
$tmp =$content;
$tmp = str_replace("{playpage:from}",$playArr[1][$i],$tmp);
foreach ($playArr[2][$i] as $n=>$play){
$tmp1 =$tmp;
$playLink = str_replace($GLOBALS['cfg_cmspath'],"",getPlayLink2($vType,$vId,$sdate,$enname,$i,$n));
$tmp1 = str_replace("{playpage:part}",$play,$tmp1);
在下方插入:
$tmp1 = str_replace("{currentpageurl}",'http://'.$_SERVER['HTTP_HOST'].$playLink,$tmp1);
找到:
if($TotalResult == 0||strpos($content,'{/seacms:channellist}')===false){
$channelLink=str_replace($GLOBALS['cfg_cmspath'],"",getChannelPagesLink($currentTypeId,1));
$tempStr = str_replace("{channelpage:page}",1,$tempStr);
$content=$tempStr;
$content=$mainClassObj->ParsePageList($content,$typeIds,1,$pCount,$TotalResult,"channel",$currentTypeId);
$content=$mainClassObj->parseIf($content);
在下方插入:
$content=str_replace("{currentpageurl}",'http://'.$_SERVER['HTTP_HOST'].$channelLink,$content);