花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來到素材無憂網(wǎng),按 + 收藏我們
登錄 注冊 退出 找回密碼

織夢一個標簽獲取當前鏈接url(首頁/列表頁/列表分頁/內(nèi)容頁/內(nèi)容頁分頁)

時間: 2020-09-15 16:21 閱讀: 作者:素材無憂網(wǎng)

獲取當前鏈接url網(wǎng)上有很多教程,但是要么只支持動態(tài)下正常使用,要么只支持內(nèi)容頁使用,今天我來做個前無古人后無來者的

我們不一樣

  • 一個標簽,可用于任意模板下使用
  • 支持動態(tài)/靜態(tài)/偽靜態(tài) 輸出當前url
  • 支持首頁/列表頁/列表分頁/內(nèi)容頁/內(nèi)容頁分頁

首頁

織夢一個標簽獲取當前鏈接url(首頁/列表頁/列表分頁/內(nèi)容頁/內(nèi)容頁分頁)(圖1)

動態(tài)欄目頁/欄目分頁

織夢一個標簽獲取當前鏈接url(首頁/列表頁/列表分頁/內(nèi)容頁/內(nèi)容頁分頁)(圖2)

織夢一個標簽獲取當前鏈接url(首頁/列表頁/列表分頁/內(nèi)容頁/內(nèi)容頁分頁)(圖3)

動態(tài)內(nèi)容頁/內(nèi)容頁分頁

織夢一個標簽獲取當前鏈接url(首頁/列表頁/列表分頁/內(nèi)容頁/內(nèi)容頁分頁)(圖4)

織夢一個標簽獲取當前鏈接url(首頁/列表頁/列表分頁/內(nèi)容頁/內(nèi)容頁分頁)(圖5)

靜態(tài)欄目頁/欄目分頁

織夢一個標簽獲取當前鏈接url(首頁/列表頁/列表分頁/內(nèi)容頁/內(nèi)容頁分頁)(圖6)

織夢一個標簽獲取當前鏈接url(首頁/列表頁/列表分頁/內(nèi)容頁/內(nèi)容頁分頁)(圖7)

靜態(tài)內(nèi)容頁/內(nèi)容分頁

織夢一個標簽獲取當前鏈接url(首頁/列表頁/列表分頁/內(nèi)容頁/內(nèi)容頁分頁)(圖8)

織夢一個標簽獲取當前鏈接url(首頁/列表頁/列表分頁/內(nèi)容頁/內(nèi)容頁分頁)(圖9)

實現(xiàn)教程

1、獲取內(nèi)容頁當前Url 或者 內(nèi)容頁分頁Url

打開 /include/arc.archives.class.php 找到

$this->NowPage = $pageNo;

在它上面加入

$ArcArr = GetOneArchive($this->ArcID);
$arcurl = $ArcArr['arcurl'];

繼續(xù)找到

$this->Fields[$this->SplitPageField] = $this->SplitFields[$pageNo - 1];

在它上面加入

if($ismake==1)
{
	if($pageNo>1)
	{
		$pagebreak = str_replace($this->NameFirst, $this->NameFirst."_".$pageNo, $arcurl);
	}
}
else
{
	if($pageNo>1) $pagebreak = "&pageno=".$pageNo;
	if($cfg_rewrite == 'Y')
	{
		$pagebreak = str_replace(".php?aid=", "-", $arcurl);
		$pagebreak =  preg_replace("#&pageno=(d+)#i", '-\\1.html', $pagebreak);
	}
	$pagebreak = $arcurl.$pagebreak;
}

繼續(xù)找到

//解析模板

在它上面加入

$this->Fields['itemcururl'] = isset($pagebreak) ? $pagebreak : $arcurl;

2、獲取列表頁當前Url 或者 列表頁分頁Url

打開 /include/arc.listview.class.php 找到

//替換第二頁后的內(nèi)容

在它上面加入

$this->Fields['itemcururl'] = $this->GetItemsCurUrl($PageNo);

繼續(xù)找到

function GetCurUrl()

在它上面加入

function GetItemsCurUrl($PageNo)
{
	global $cfg_basehost;
	if($this->TypeLink->TypeInfos['isdefault']==-1)
	{
		$purl = $this->GetCurUrl();
		if($cfg_rewrite == 'Y')
		{
			$nowurls = preg_replace("/-/", ".php?", $purl);
			$nowurls = explode("?", $nowurls);
			$purl = $nowurls[0];
		}
		if($PageNo==1)
		{
			$geturl = "tid=".$this->TypeID;
			$purl .= '?'.$geturl;
		}
		else
		{
			$geturl = "tid=".$this->TypeID."&TotalResult=".$this->TotalResult."&";
			$purl .= '?'.$geturl."PageNo=".$PageNo;
		}
	}
	else
	{
		$tnamerule = $this->GetMakeFileRule($this->Fields['id'],"list",$this->Fields['typedir'],$this->Fields['defaultname'],$this->Fields['namerule2']);
		$tnamerule = preg_replace("/^(.*)\//", '', $tnamerule);
		$cfg_basehost = preg_replace('#/$#','',$cfg_basehost);
		$tnamerule = MfTypedir($this->Fields['typedir']).'/'.$tnamerule;
		if($PageNo==1)
		{
			$purl = MfTypedir($this->Fields['typedir']).'/';
		}
		else
		{
			$purl = str_replace("{page}",$PageNo,$tnamerule);
		}
	}
	return $purl;
}

還需要打開 /include/arc.partview.class.php 找到

$this->Fields['title'] = $this->TypeLink->GetPositionLink(false);

在它下面加入

$this->Fields['itemcururl'] = $this->TypeLink->GetOneTypeUrl($this->TypeLink->TypeInfos);

前臺模板標簽調(diào)用

{dede:field.itemcururl runphp=yes}global $cfg_basehost;@me = (@me == '' ? "{$cfg_basehost}" : "{$cfg_basehost}@me");{/dede:field.itemcururl}

版權聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!

轉(zhuǎn)載請注明: 織夢一個標簽獲取當前鏈接url(首頁/列表頁/列表分頁/內(nèi)容頁/內(nèi)容頁分頁)

標簽:  
模板推薦