We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently it seems we can only style the RSS items one way, and there is no way to display the items in a table grid format.
It would be really cool if we could add each item to the template individually. This would make the templates much more customizable.
E.g. We would be able to style each post differently, and we would be able to put the posts in a
I've seen this in a WP plugin, where each item tag has a number (-1, -2, -3 etc.) referencing the post.
For example,
{feed url="<<FEEDURL>>"} {feeditems count="3"} <div> <h3>{feeditem-1:title}</h3> <p><small>{feeditem-1:date format="d-m-Y H:i"}</small></p> <p>{feeditem-1:description}</p> <p><img src="{feeditem-1:image}"></p> </div> <div> <h3>{feeditem-2:title}</h3> <p>{feeditem-2:date format="d-m-Y H:i"}</p> <p><strong>{feeditem-2:description}</strong></p> <p><img src="{feeditem-2:image}"></p> </div> <div> <h3>{feeditem-3:title}</h3> <p><small>{feeditem-3:date format="d-m-Y H:i"}</small></p> <p>{feeditem-3:description}</p> <p><img src="{feeditem-3:image}"></p> </div> {/feeditems} {/feed}
The text was updated successfully, but these errors were encountered:
@shmaltz Great idea, will put it on our feature-list.
Sorry, something went wrong.
No branches or pull requests
Currently it seems we can only style the RSS items one way, and there is no way to display the items in a table grid format.
It would be really cool if we could add each item to the template individually. This would make the templates much more customizable.
E.g. We would be able to style each post differently, and we would be able to put the posts in a
.I've seen this in a WP plugin, where each item tag has a number (-1, -2, -3 etc.) referencing the post.
For example,
{feed url="<<FEEDURL>>"} {feeditems count="3"} <div> <h3>{feeditem-1:title}</h3> <p><small>{feeditem-1:date format="d-m-Y H:i"}</small></p> <p>{feeditem-1:description}</p> <p><img src="{feeditem-1:image}"></p> </div> <div> <h3>{feeditem-2:title}</h3> <p>{feeditem-2:date format="d-m-Y H:i"}</p> <p><strong>{feeditem-2:description}</strong></p> <p><img src="{feeditem-2:image}"></p> </div> <div> <h3>{feeditem-3:title}</h3> <p><small>{feeditem-3:date format="d-m-Y H:i"}</small></p> <p>{feeditem-3:description}</p> <p><img src="{feeditem-3:image}"></p> </div> {/feeditems} {/feed}
The text was updated successfully, but these errors were encountered: