How to create rss feed from my joomla 3.2.3 category?

Joomla 3.2 has an RSS feed creator in the kernel, like 2.5? I would like to create an RSS feed with articles from one of my joomla categories.

+6
source share
3 answers

1.) Go to the Extensions-> Module Manager section on the administrator screen.

2.) Create a new module, the module type is β€œSyndication”.

3.) The only really important bit here is to assign it to a menu item that displays the category from which you want to create a feed (it can be either viewing a blog or viewing a list). Assign it only to this item (select "only selected items" from the drop-down list, click "Select none" to clear all checks, and then check only the category page from which you want to create a feed).

4.) Fill in whatever you want. The module should be published, but technically it should not even be visible to do its work, although you can see it so that people can click on the link to the channel .; {>}

Caution: it will create a feed in RSS or Atom format. You want both, create two syndication modules.

+6
source

You can specify the display format at the end of the category URL as follows:

www.mypage.com/index.php?option=com_content&view=category&id=<YOUR_CATEGORY_ID>&format=feed&type=rss 

When you add the line &format=feed&type=rss at the end of the URL, you will convert the classic page into an RSS feed. You can change type=rss to type=atom if you want.

+1
source

1- Login to Joomla Admin 2-Go to Components β†’ Newsfeeds> Categories - Create a new category 3-Go to Compnents β†’ Newsfeeds β†’ Feeds - Create a new feed 4- Create a menu item associated with this RSS feed. So easy! Hope this helps!

-3
source

All Articles