How to limit entries in ExpressionEngine?

How to make a counter in ExpressionEngine?

{exp:weblog:entries weblog="news" limit="15"}

{title}

{body}

Posted on {entry_date format="%M %d, %Y - %h:%i %A"}

{/exp:weblog:entries}

it seems 'limit' limits the SQL Calls , but not actual results.... Should i add php? more here: http://expressionengine.com/docs/modules/weblog/weblog_entries.html


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

As others mentioned, not entirely sure what you mean by counter vs. 'limit entries'. Limit entries will simply pull that number or entries per page (SQL may actually pull more for pagination).

Count is a built in single variable for the exp:weblog:entries tag. If you want the total count of entries in that weblog you could pull the number of total entries using the statistics module.

链接地址: http://www.djcxy.com/p/66010.html

上一篇: 流行与最近的Weblog条目ExpressionEngine

下一篇: 如何限制ExpressionEngine中的条目?