How to add homepage links?

simplyjo

Power Member
Joined
Jun 21, 2009
Messages
754
Reaction score
93
Friends, I want to know how to add homepage links on blogger/WP platforms ? (Not sidewide/blogroll/blogposts).

Thanks !
 
Friends, I want to know how to add homepage links on blogger/WP platforms ? (Not sidewide/blogroll/blogposts).

Thanks !


Hi!

For wordpress if you want to show the links just on homepage you can use/create a file named links.php.

and in your theme file (footer.php / sidebar.php etc) where you want to appear your links just on index ,insert this code:

<?php if (is_home()) { include("links.php"); }?>

But you have to put the links what you want to appear on the first page in the links.php file located at /wp-content/themes/wordpress-theme-name-here/links.php
 
Wow. it sounds confusing :(

But thx a ton anyways. Will try it out.

Any way to add them using blogger ?

Hi!

For wordpress if you want to show the links just on homepage you can use/create a file named links.php.

and in your theme file (footer.php / sidebar.php etc) where you want to appear your links just on index ,insert this code:

<?php if (is_home()) { include("links.php"); }?>

But you have to put the links what you want to appear on the first page in the links.php file located at /wp-content/themes/wordpress-theme-name-here/links.php
 
Back
Top