Smarty - foreach loop 10 times and stop

后端 未结 8 2296
执念已碎
执念已碎 2021-02-07 12:31

Im using the following Smarty code:

{foreach from=$entries key=i item=topic}
  {if $topic.topic_style == question}
    
  • 8条回答
    •  失恋的感觉
      2021-02-07 13:05

      Use index:

      {foreach from=$entries key=i item=topic name=foo}
        {if $smarty.foreach.foo.index < 10}
          {if $topic.topic_style == question}
            
    • {$topic.title}
    • {/if} {/if} {/foreach}

    提交回复
    热议问题