I've searched, but haven't found an adequate solution. My inexperience with wordpress, php, etc. may be to blame.
I'm trying to set up a Subscribe page, which will list all categories and tags along with links for the RSS feed, etc. for each.
Example:
Category1 via RSS feed via Email
Category2 via RSS feed via Email
Category3 via RSS feed via Email
...
Tag1 via RSS feed via Email
Tag2 via RSS feed via Email
Tag3 via RSS feed via Email
...
My thought was to just store the categories as an array and the tags as an array, then create a list with the added links on each line. Unfortunately, I haven't been able to find a way to store just the categories or tags as an array (not links, etc. just the text). Using wp_list_categories or wp_tag_cloud didn't work and get_tags and get_categories seem to no longer work in WordPress 2.6 (?).
I'm aware wp_list_categories can display feed and feed_image, but I would like the flexibility to add other things after each category name. Any assistance is greatly appreciated.