Hello Dpers, How do i add HOMEPAGE LINKS in My Wordpress blog? Any help is appreciated. Don! I need your help as always.
Sure why not. Add below given code for that in your sidebar.php <?php if(is_home() && $post==$posts[0] && !is_paged()) { ?> Your link here <?php } ?> Code (markup): DON.
<?php if(is_home() && $post==$posts[0] && !is_paged()) { ?> anchor text & link woud be placed here. <?php } ?>
Already mentioned in code itself. <?php if(is_home() && $post==$posts[0] && !is_paged()) { ?> [B][SIZE="4"]Your link here (anchor text with url) [/SIZE][/B] <?php } ?> Code (markup): Let me know if you have problem doing this. DON.