Feed plugin for Flextype supports Atom 1.0, RSS and JSON feed types and allows you to generate feeds for entries.
/project/plugins/feed
/project/plugins/feed
Key | Value | Description |
---|---|---|
enabled | true | true or false to disable the plugin |
priority | 100 | Feed plugin priority |
feed | [] | Feed specific data |
In project/config/plugins/feed/settings.yaml
you may create unlimited feed for you entries.
Lets create RSS, ATOM and JSON feed for blog collection:
feed:
blog-rss:
id: blog
options:
title: Blog
description: Blog description
collection: true
Feedat: rss
route: '/blog.rss'
blog-atom:
id: blog
options:
title: Blog
description: Blog description
collection: true
Feedat: atom
route: '/blog.atom'
blog-json:
id: blog
options:
title: Blog
description: Blog description
collection: true
Feedat: json
route: '/blog.json'
You may easily display feed urls from example above in TWIG templates:
<a href="{{ url() }}/blog.atom">Atom 1.0</a>
<a href="{{ url() }}/blog.rss">RSS</a>
<a href="{{ url() }}/blog.json">JSON</a>
PHP Mailer plugin for Flextype.
Estimated reading time plugin for Flextype.
Contact Plugin for Flextype.
Page View Counter plugin will help you to know how many readers of every page on your website.
Accounts Panel plugin for Flextype.