Can anybody guide me on adding a "homepage only" link on my wordpress blog ? Is there any php code ? Thanks in advance.
Me think U got to add it like how you edit your website like using Frontpage. Pardon me if i'm wrong FL
You need to use conditional tags. In your case is_home See http://codex.wordpress.org/Conditional_Tags if (is_home()) { echo '<a href=http://www.link.com>link</a>'; } Code (markup): But this hardcoded and you need to go into code to change it. An other way is to have a category in your links that you manage thru wp-admin. and use instead of the echo the line <?php wp_get_links(category); ?>
I tried those conditional tags thing before - but i did mistake in coding. Thanks, its working now. Rep added.