如何限制ExpressionEngine中的条目?

时间:2009-11-05 03:05:55

标签: php expressionengine

如何在ExpressionEngine中创建一个计数器?

{exp:weblog:entries weblog =“news”limit =“15”}

{TITLE}

{体}

发表于{entry_date format =“%M%d,%Y - %h:%i%A”}

{/ EXP:博客:条目}

似乎'限制'限制SQL调用,但不是实际结果.... 我应该添加PHP吗? 更多信息:http://expressionengine.com/docs/modules/weblog/weblog_entries.html

1 个答案:

答案 0 :(得分:1)

{exp:weblog:entries weblog="news" limit="15"}
**{count}**
{title}
{body}
{/exp:weblog:entries}
{exp:stats weblog="news"}
 {total_entries}
{/exp:stats}

正如其他人所提到的,不完全确定你的意思是反对'限制条目'。限制条目将简单地拉出每页的数字或条目(SQL实际上可以为分页提取更多)。

Count是exp:weblog:entries标记的内置单个变量。如果您想要该博客中的条目总数,您可以使用statistics module来提取总条目数。