
|
|
#2 (页面定位) |
|
版主
![]() 注册日期: 2005-08-30
住址: 地球
帖子: 12513
![]() |
我没用插件,新建一个名为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> |
|
|
|
|
|
#7 (页面定位) |
|
注册日期: 2005-12-18
帖子: 2885
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
老鬼的那个无法通过 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> |
|
|
|