if (!empty($tagindexInfo)) {
$tagid = $tagindexInfo[‘id’];
$tag = $tagindexInfo[‘tag’];
在下面增加一段:
$viewfile = $tagindexInfo[‘viewfile’];
再找到:
$field_data = array(
‘tag’? ?=> $tag,
‘tagid’? ?=> $tagid,
下面增加一行:
‘viewfile’ => $viewfile,
再次找到:
/*模板文件*/
$viewfile = ‘lists_tags’;
將他修改為:
/*模板文件*/
if($viewfile) {
$viewfile = $viewfile;
}else{
$viewfile = ‘lists_tags’;
}
保存即可;
/**
* 編輯
*/
public function edit()
{
if (IS_POST) {
$post = input(‘post.’);
if (empty($post[‘id’])) $this->error(‘操作異?!?;
$updata = [
‘a(chǎn)dd_time’ => time(),
‘seo_title’ => !empty($post[‘tag_seo_title’]) ? $post[‘tag_seo_title’] : ”,
‘seo_keywords’ => !empty($post[‘tag_seo_keywords’]) ? $post[‘tag_seo_keywords’] : ”,
在這下面增加以下代碼:
‘viewfile’ => !empty($post[‘viewfile’]) ? $post[‘viewfile’] : ”,
之后打開模板文件:applicationadmintemplatetagsedit.htm
-
-
標簽調(diào)用方法:{literal}{$eyou.field.seo_description}{/literal}
在下面增加一段以下代碼:
-
-
只要填寫風格名稱即可不包含.htm類型,比如:tagindex
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 易優(yōu)TAGS自定義風格的簡易方法