Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

RSS feed subscribe on AutoFocus+ Theme WordPress

  • SOLVED

This may sound like a silly Question but for the life of me, I cant find how to activate RSS Subscribe to Entries/Comments option for AutoFocus+. So far I have only been able to do email subscriptions. Please advise!

Answers (4)

2010-08-12

Mykyta Savchenko answers:

You can add rss link to display in addressbar in browsers like on my attachment:

open your header.php and add the folowing code before "</head>" tag.

<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />


If you wish to add this as link or image somewhere on your site you should use the following code in the place you need:

<a href="<?php bloginfo('rss2_url'); ?>">Subscribe to RSS</a>


The subscription to comments is also simple. Just put this code <strong>inside the loop</strong> on single page:

<a href="<?php echo get_settings('siteurl'); ?>/wp-commentsrss2.php?p=<?php echo $post->ID; ?>">Subscribe to comments</a>

2010-08-12

enodekciw answers:

If you can't see any RSS icon on your website, and no 'activate RSS feed' in theme options, that means that you will have to edit your template files and add RSS link (icon) yourselft. The function is - <?php bloginfo('rss2_url'); ?>. So i guess, there's no easy way for you.

2010-08-12

B L answers:

You could add in the feed using a custom html widget. Navigate to "Widgets" under the "Appearance" section, add in a "Text" widget to any of the asides and then put your rss feed url in the custom text as a simple hyperlink.

It's a bit of a dirty hack, but it will work :)

2010-08-12

Pippin Williamson answers:

For subscribing to comments, here is a really nice little plugin that allows users to subscribe via email. It can be seen on dozens of top websites, such as problogdesign.com, perishablepress.com, and many more.

http://wordpress.org/extend/plugins/subscribe-to-comments/

And it's really, really easy to setup.