I am running some blogs but i want some editing in these blogs like i don't want to make blogroll link as sitewide i just want to make it visible on homepage, so which code i will have to use for make blogroll link just as a homepage link. Your suggestions are appreciated. Regards!
You could pick up the codes/functions from the blogroll php file and put it into your homepage php file and it will show the links just like what it is shown where it is used to be.
So you only want your blogroll to appear on the homepage.. Right? This code along with some other php stuff will do the job for you (Sorry i dont know PHP, but i spotted this code in a template i previously used) <?php if (is_home()) { ?> Your blogroll code here <? } ?> The code could probably do with a bit of cleaning up (If not the correct syntax.) Check about but i am pretty sure this is the type of code your looking for. Regards DK