Archive for the ‘Movies’ Category
April 11th, 2010
5 Must Have WordPress Plugins Every Blogger Should Have

WordPress is better known for it's huge list of available plugins, but we have complie 5 essential WordPress plugins which every blogger should have for an effective blogging experience. 1. All in One SEO Pack Every blogger is aware of the importance of Search Engine Optimization (SEO) through which you can get a great ...
April 5th, 2010











WordPress tip: Insert custom content after each post
For some reason, you may want to be able to automatically display a custom text below each of your posts. You can hard-code it, but it will be way better to do so using a WordPress hook. Here’s how to do. . . . . . . . . . . . . . . . . . [code]function add_post_content($content) { if(!is_feed() && !is_home()) { $content .= '<p>This article is copyright ...