您好,欢迎来到菜鸟吧源码网-本站资源仅供学习与参考,禁止用于商业或违法行为!
  • 首 页
  • 下载APP
  • 公告:菜鸟吧APP于2024.9.15正式上线,请首页右上角进入下载,本站资源均来源于互联网及会员投稿发布,所有资源仅供学习参考研究使用,请勿商用或其它非法用途,商用请购买正版,否则产生一切后果由用户自行承担!谢谢!

     

    当前位置:主页 > 站长学堂 > phpcms >
    phpcms标签模板和专题模板的制作方法
    时间:2019-10-17 14:02 作者:菜鸟哥 浏览:收藏 挑错 打印

    1.标签模板的制作

    前面我们已经讲到了每个频道模板的制作,但是我们只是插入对应的标签代码,如何做到显示的效果能个性化,满足自己的要求呢?,那么我们就要对自己的标签模板做个性化的设计

    所有以tag_开头的模板

    都是标签模板

    文章频道的模板为例


    我们会看到

    tag_articlelist.html 文章列表标签模板

    tag_picarticle.html 图片文章标签模板

    剩下的两个我们一般做模板的时候,如果自己对于js代码不是很理解的话,我们一般不会去动它,

    打开文章列表标签模板


    CODE: [Copy to clipboard] <table width="100%" border="0" align="center" cellpadding="1" cellspacing="1">

    {loop $articles $i $article}

    {if $i%$cols==0} <tr> {/if}

    <td height="20" width="{$width}">

    {$article[img]} {if $showcatname}{$article[catname]}{/if} <a href="{$article[url]}" title="{$article[alt]}" target="{$target}" class="tag_title_link">{$article[title]}</a>

    {if $showhits}({$article[hits]}){/if}

    {if $showauthor}[作者:{$article[author]}]{/if}

    {if $article[showcommentlink]}&nbsp;<a href="{PHPCMS_PATH}comment/?item=articleid&itemid={$article[articleid]}" target="_blank"><span class="color_red">评</span></a>{/if}

    {if $datetype}[<span class="tag_date">{$article[adddate]}</span>]{/if}

    {if $descriptionlen}<br/><span class="tag_description">&nbsp;&nbsp;&nbsp;&nbsp;{$article[description]}</span>{/if}

    </td>

    {if $i%$cols==($cols-1)}</tr>{/if}

    {/loop}

    </table>


    {if $pages}

    <div class="pages">{$pages}</div>

    {/if} 这个里面

    {loop $articles $i $article}是一个循环,我们要关注的就是这个循环里面的内容

    {if $i%$cols==0} <tr> {/if} 我们在标签里面设定的参数,显示几列,根据这个来控制标签的显示

    {$article[img]} 文章的图片,显示精华,置顶,还是普通文章

    {if $showcatname}{$article[catname]}{/if} 所属栏目


    {$article[url]} 文章路径


    {$article[title]} 文章标题

    {if $showhits}({$article[hits]}){/if} 点击数

    {if $showauthor}[作者:{$article[author]}]{/if} 作者

    {if $article[showcommentlink]} <a href="{PHPCMS_PATH}comment/?item=articleid&itemid={$article[articleid]}" target="_blank"><span class="color_red">评</span></a>{/if} 评论连接

    {if $datetype}[<span class="tag_date">{$article[adddate]}</span>]{/if} 添加时间

    {if $descriptionlen}<br/><span class="tag_description"> {$article[description]}</span>{/if} 描述说明


    如果我们要实现时间的靠右对齐,那么我们可以把这个模板改成


    CODE: [Copy to clipboard] <table width="100%" border="0" align="center" cellpadding="1" cellspacing="1">

    {loop $articles $i $article}

  • 共2页:
  • 上一页
  • 1
  • 2
  • 下一页
  • 郑重声明:
    本站所有内容均由互联网收集整理、网友上传,并且以计算机技术研究交流为目的,仅供大家参考、学习,不存在任何商业目的与商业用途。 若您需要商业运营或用于其他商业活动,请您购买正版授权并合法使用。
    我们不承担任何技术及版权问题,且不对任何资源负法律责任。
    如无法下载,联系站长索要。
    如有侵犯您的版权,请给我们来信:cainiaovip8@qq.com,我们尽快处理。

    phpcms制作图片频道模板的方法phpcms制作图片频道模板的方法
    PHPCMS V9版本怎么做才能单页面做频道时也可编辑内容PHPCMS V9版本怎么做才能单页面做频道
    phpcms v9和discuz X3.1实现同步登陆退出论坛免激活的教程phpcms v9和discuz X3.1实现同步登陆退