WordPress is a great blogging platform which is highly configurable. It allows you a lot of things to do with your Blog. For example, have you noticed the Share Buttons at the end of this post. User can click on those buttons and share this article in any of their favorite social site.
So how to add content automatically after each Post? Simple, use WordPress Hooks to add Filters that add content. For example copy below code in functions.php
file inside your theme folder.
function insertFootNote($content) { if(!is_feed() && !is_home()) { $content.= "<div class='FollowMe'>"; $content.= "<h4>Enjoyed this article?</h4>"; $content.= "<p><a href='http://feeds.crunchify.com/Crunchify'>Subscribe</a> and Follow me on <a href='http://twitter.com/Crunchify'>Twitter</a>.</p>"; $content.= "</div>"; } return $content; } add_filter ('the_content', 'insertFootNote');
Hope this helps you. Enjoy and keep visiting.