Many bloggers will have a habit to write custom content after each post. Like “We welcome your suggestions on this blog “ Or something like ask readers to subscribe their RSS feed “If you like this post subscribe to our rss feed”.
We can hard code this content after the post content or we can add it every time when we write a new post. Adding this content every time, when we write a new article is not the right choice.
To automate this one add the following code to your theme functions.php i.e
function addFootNote($content) {

$content.= "<div class='subscribes'>";
$content.= "<h4>like this article?</h4>";
$content.= "<p>Subscribe to our <a href='http://feeds2.feedburner.com/wordpressnotes>RSS feed</a> </p>";
$content.= "</div>";
}
return $content;
}