Mity Docs Mity Docs for Mity Digital
Feedamic Documentation

Single feed

Feedamic v2.2 introduced support for multiple feeds.

You can still use this syntax for your feed configuration, even in v2.2, however you are limited to a single feed.

Your configuration file will still need all of the options from the Defaults configuration.

In short, instead of placing your feed configuration in the feeds key, you simply place the Feeds configuration options at the root level of the config file.

1<?php
2 
3return [
4 
5 'routes' => [
6 'atom' => '/feed/atom',
7 'rss' => '/feed'
8 ],
9 
10 'collections' => [
11 'blog'
12 ],
13 
14 'title' => '',
15 
16 'description' => '',
17 
18 //
19 // Other config options from the "Defaults" documentation
20 //
21 
22];