How to select 2nd to 4th featured post?

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. :heart:

it worked. Thank you.

You are welcome

With your help I created an new featured articles section. :heart:

Nice site. Happy journey!!

1 Like

Thank you :heart: