1. 论坛系统升级为Xenforo,欢迎大家测试!
    排除公告

请推荐一个textpattern 4.0.6 能用的 archive 插件

本帖由 qxzw2008-03-06 发布。版面名称:源码讨论

  1. qxzw

    qxzw New Member

    注册:
    2005-12-08
    帖子:
    25
    赞:
    0
    我喜欢老鬼blog的archive的表现形式:)
     
  2. laogui

    laogui Administrator
    管理成员

    注册:
    2005-08-30
    帖子:
    15,216
    赞:
    35
    我没用插件,新建一个名为monthly_article的form,类型是article

    HTML:
        <!-- show the year -->
        <txp:if_different>
        <h3><txp:posted format="%Y" /></h3>
        </txp:if_different>
        <!-- show the month -->
        <txp:if_different>
        <h4><txp:posted format="%B" /></h4>
        </txp:if_different>
        <!-- article title and link -->
        <li><txp:permlink><txp:title /></txp:permlink></li>
    
    然后在页面里加上
    HTML:
    	<h2 class="pagetitle">Archives by Month</h2>
    	<ul id="archive-pages">
    	<txp:article_custom limit=99999 form="monthly_article" />
    	</ul>
    
    当然也可以在公用页面里用判断
    HTML:
    <txp:if_section name="archive">
    	<h2 class="pagetitle">Archives by Month</h2>
    	<ul id="archive-pages">
    	<txp:article_custom limit=99999 form="monthly_article" />
    	</ul>
    <txp:else />
    <txp:article form="default" allowoverride="0"/>
    </txp:if_section>
     
  3. qxzw

    qxzw New Member

    注册:
    2005-12-08
    帖子:
    25
    赞:
    0
    thinks a lot!
     
  4. qlq

    qlq Active Member

    注册:
    2006-04-20
    帖子:
    2,658
    赞:
    1
    archive 无用哦
     
  5. 蓝色的信封

    蓝色的信封 New Member

    注册:
    2006-10-07
    帖子:
    252
    赞:
    3
    对seo有好处
     
  6. ice

    ice New Member

    注册:
    2006-03-14
    帖子:
    3
    赞:
    0
    :),英语烂,不好玩....
     
  7. fen

    fen New Member

    注册:
    2005-12-18
    帖子:
    3,050
    赞:
    25
    老鬼的那个无法通过 W3C 验证,我的是这么写
    HTML:
    <txp:if_different>
    <li style="margin-top:2em;"><txp:posted format="%B %Y" wraptag="h4" /></li>
    </txp:if_different>
    <li><txp:permlink><txp:title /></txp:permlink></li>
    
    HTML:
    <ul><txp:article_custom limit=99999 form="monthly_article" /></ul>
    
     
  8. sluke

    sluke New Member

    注册:
    2005-09-04
    帖子:
    4,550
    赞:
    13
    学习了
     
  9. qlq

    qlq Active Member

    注册:
    2006-04-20
    帖子:
    2,658
    赞:
    1
    能说出个道道来么?:music: