logo

$4
RSS feed subscribe on AutoFocus+ Theme

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!

adamodar | 08/12/10 at 1:53am | Edit


(4) Possible Answers Submitted...

  • avatar
    Last edited:
    08/12/10
    2:20am
    enodekciw says:

    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.

  • avatar
    Last edited:
    08/16/10
    10:02am
    Mykyta Savchenko says:

    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 inside the loop on single page:

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

    attachment image View Attachment

  • avatar
    Last edited:
    08/12/10
    4:21am
    B L says:

    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 :)

  • avatar
    Last edited:
    08/12/10
    10:19am
    Pippin Williamson says:

    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.

This question has expired.





Current status of this question: Completed