Anyone have list of Wordpress themes that show Blogrolls on homepage only and NOT sitewide. Many Wordpress themes show blogroll as Sitewide. Alternatively, would appreciate if someone can advise how to change blogroll from sitewide to Homepage only. Thanks in advance.
If you want it only at homepage then you need to add below given code in sidebar. <?php if(is_home() && $post==$posts[0] && !is_paged()) { ?> [B]Blogroll Here[/B] <?php } ?> Code (markup): DON.