您现在的位置是:首页 > 教程 > 易优cms教程易优cms教程
易优TAGS自定义风格的简易方法
凌瑛昼2023-08-25 22:17:18易优cms教程已有人查阅
导读涉及的修改文件如下:applicationhomecontrollertags.php文件用编辑器打开他找到:if (!empty($tagind
涉及的修改文件如下:
applicationhomecontrollertags.php文件
用编辑器打开他
找到:
打开:
applicationadmincontrollerTags.php文件
找到以下代码:
文件
找到以下代码:
applicationhomecontrollertags.php文件
用编辑器打开他
找到:
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’;
}
保存即可;打开:
applicationadmincontrollerTags.php文件
找到以下代码:
/**
* 编辑
*/
public function edit()
{
if (IS_POST) {
$post = input(‘post.’);
if (empty($post[‘id’])) $this->error(‘操作异常’);
$updata = [
‘add_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文件
找到以下代码:
<dl class=”row”>
<dt class=”tit”>
<label for=”tag_seo_description”>SEO描述</label>
</dt>
<dd class=”opt”>
<textarea rows=”5″ cols=”60″ name=”tag_seo_description” id=”tag_seo_description” style=”height: 60px;”>{$tag.seo_description}</textarea>
<p class=”notic”>标签调用方法:{literal}{$eyou.field.seo_description}{/literal}</p>
</dd>
</dl>
在下面增加一段以下代码:
<dl class=”row”>
<dt class=”tit”>
<label for=”viewfile”>指定风格</label>
</dt>
<dd class=”opt”>
<input type=”text” name=”viewfile” id=”viewfile” value=”{$tag.viewfile}” class=”input-txt”>
<p class=”notic”>只要填写风格名称即可不包含.htm类型,比如:tagindex</p>
</dd>
</dl>
本文标签:
很赞哦! ()
相关文章
随机图文
-
eyoucms需要授权吗,eyoucms商业授权码多少钱?
eyoucms商业授权码多少钱?基础授权150元,可联系代码号进行授权,如果购买后依然存在Powered by EyouCms,可以在后台刷新一下。目前国内版权保护比价好 -
eyoucms发布时间怎么修改,eyoucms更新时间的标签用法
易优cms模板eyoucms发布时间,更新时间的标签用法。在文章第一次发布时就会记录在数据表内,后面再次编辑保存文章,发布时间也不会改变。 -
织梦转易优不支持sql的临时解决方法
先升级到较新版,下载以下补丁包,然后解压覆盖到网站根目录下。下载,支持sql标签的补丁包,下面我们将织梦和易优的sql标签进行对比转换 -
易优cms升级1.5.5后添加移动端识别代码示例
易优cms在1.5.5之前会自动添加移动端识别代码,eyoucms 1.5.5版本取消了这个功能,有利有弊吧,在此不做分析。
留言与评论 (共有 条评论) |