Archive for the ‘Blogs’ Category
Free WordPress Plagin
I finally found solution for the problem with text widgets should be showed on the home page only of the blog.
1. Go to Plagin section
2. Install Exec-PHP plugin
4. Activate it.
3. Add text widget to your side bar
4. Enter following php code
<?php if(is_home() && $post==$posts[0] && !is_paged()) { ?>
Home Page Text only
<?php } ?>