phpcms网站tag标签
文章描述:
tag标签是文章的关键词,phpcms网站tag标签如何调用呢?
文章内容页
文章内容页是在phpcms/templates/default/content
目录下面,打开show.html找到以下代码:
{loop $keywords $keyword}
<a href="{APP_PATH}index.php?m=content&c=tag&a=lists&tag={urlencode($keyword)}" class="blue">{$keyword}</a>
{/loop}
文章内容页调用的tag标签是文章的关键词标签,tag标签的模型文件在phpcms/modules/content/
目录下面,模型文件名称是tag.php
Tag首页
tag首页是调用所有tag标签和统计文章包含当前标签的数量
文件路径:phpcms/templates/default/content
文件名称:tag.html
{loop $infos $info}
<a href="{APP_PATH}index.php?m=content&c=tag&a=lists&tag={urlencode($info['keyword'])}">{$info['keyword']}</a>({$info['videonum']})
{/loop}
访问https://域名/index.php?m=content&c=tag
Tag列表
tag列表是调用当前标签里面包含的所有文章
文件路径:phpcms/templates/default/content
文件名称:tag_list.html
<div class="crumbs"><a href="{siteurl($siteid)}">首页</a><span> > </span>{catpos($catid)} 标签:<font color="red">{$tag}</font> 总共有 {$total} 条记录</div>
<ul class="list lh24 f14">
{loop $datas $r}
<li><span class="rt">{date('Y-m-d H:i:s',$r[inputtime])}</span>·<a href="{$r[url]}" target="_blank"{title_style($r[style])}>{$r[title]}</a></li>
{if $n%5==0}<li class="bk20 hr"></li>{/if}
{/loop}
</ul>
<div id="pages">{$pages}</div>
访问https://域名/index.php?m=content&c=tag&a=lists&tag=标签名称
发布时间:2021/08/12
发表评论