I want to select 2nd to 4th featured post, How to make it? I cannot imagine how to skip first featured post.
Hi @thimiraonline,
You can do it easily using from and to like this.
{{#get "posts" filter="featured:true"}}
    {{#if posts}}
        {{#foreach posts from="2" to="4"}}
            {{> post-card}}
        {{/foreach}}
    {{/if}}
{{/get}}
Check this out:
              
              
              1 Like
            
            
          Thank you. I will check this out. 
it worked. Thank you.
You are welcome
Nice site. Happy journey!!
              
              
              1 Like
            
            
          Thank you 
