I would like to place a subscribe to RSS link at end of each post in wordpress. Any plugin that can help me do that? I am using headway
You don't need to use a plugin for this (and you shouldn't). Instead, add this code to your functions.php file (located in wp-content/themes/THEMENAME/functions.php) function add_rss_after_content($content){ $rss_html = '<div class="content-rss"><a href="' . get_bloginfo('rss2_url') . '">Subscribe to RSS!</a></div>'; return $content . $rss_html; } add_filter('the_content', 'add_rss_after_content'); PHP: You need to add the code after <?php and before ?> Note: You won't always find ?> in the functions.php-file, and if this is the case, don't worry about it, just add it after <?php as I said above I added class="content-rss" to the div containing the link, so you can style it easily with css