Some time ago, I shown you how you can display a rss feed per category in your WordPress blog. Today, let’s see how we can list all category feeds by using the good old wp_list_categories() fiunction.
Some time ago, I shown you how you can display a rss feed per category in your WordPress blog. Today, let’s see how we can list all category feeds by using the good old wp_list_categories() fiunction.
To achieve this recipe, simply paste the following code anywhere on your theme. It will output a list of your categories with a link to the category rss feed.
<?php wp_list_categories('feed_image=http://www.myblog.com/image.gif&feed=XML Feed&optioncount=1&children=0'); ?>
The two parameters used here are:
Leave a Comment