Guys can anyone help? I would like to add a small RSS subscribe button at the bottom of every post in my word press blogs. A assume I need to edit the post.php file to do this? I user feedburn to manage my RSS. Can anyone tell me what code I need to place in the PHP file? James
You'll need to put the button HTML code in the file labeled "Single Post" in Appearance > Editor in your WP Admin. In my case, that file is "single.php". To put the button at the bottom of the post, just before the comments section, I would paste my HTML code just before this line: <?php comments_template(); ?> Code (markup): so that my revised code looks like this: <!--/entry --> <a href="link-to-feedburner-feed"><img src="your-button.jpg" alt="" /></a> <?php comments_template(); ?> Code (markup):