Subscribe Buttons for Wordpress
I have added the subscribe buttons of RSS for my wordpress blog.I tried Add to Any Subscribe Button and Subscribe Sidebar plugin. "Add to Any Subscribe Button" can add your rss feed to almost all feed readers , such as Google Reader, My Yahoo!, Netvibes and Windows Live. But it will lead the reader to their smart menu. That is not somethings I prefer. I prefer there was some button in my blog. The reader can directly add my feed to their rss reader directly. Subscribe sider can do that. But I don't know why after I added widget into my page. There is an extra h1 tag on the plugin.
But that is easy to fix.
From
Code
echo $before_widget . $before_title . $title . $after_title; |
Change to:
Code
$line_before = $before_widget . $before_title . $title . $after_title; | |
$line_before = str_replace($tags,"",$line_before); | |
echo $line_before; |
Easy, Easy, Easy
Trackback address for this post
Trackback URL (right click and copy shortcut/link location)
Feedback awaiting moderation
This post has 165 feedbacks awaiting moderation...
Form is loading...