any plugin to show link only on the homepage. I want to show certain links only on the first page and not all pages of my blog. I am using wordpress.
If you are talking about : 1.To hide certain Page's link, use this : "Exclude Pages from Navigation" link >> http://wordpress.org/extend/plugins/exclude-pages/ 2. To hide certain content on sidebar, use "Slayer's Custom Widgets" >>> http://www.thaslayer.com/2008/10/16/wordpress-plugin-slayers-custom-widgets-v-10/ Hope it help
k listen what u can do is just call the links manually on the homepage. If you know the coding u understood what I am trying to say. Find a place in index.php n place your links there.
what I want to do is show a link only on the homepage and not on the other pages. I want a free plugin for this.
Haven't heard about the plugin, but there's php code that you can implement on your theme, something like "<php if>". Anybody can give the accurate code, please?
<?php if ( is_home() || is_page() ) { ?> <a href="URL">Anchor</a> <?php } ?> PHP: The above should do exactly what your looking for Hope it helps Dan
Try Widget Logic (cannot post link here yet ) wordpress.org/extend/plugins/widget-logic/ This plugin gives every widget an extra control field called "Widget logic" that lets you control when the widget appears, using Wordpress tags like is_home(), is_frontpage(), is_single() and so on.
I used the exact code in text widget in my wordpress blog, it is working. but the link is seen on all pages. what changes to make to the code. I want it to be seen on homepage only.
I have found that the text widget does not always produce the result you want. You'll likely have to use that code in the theme page itself, use the back end editor and place the code in the sidebar.php of the theme. Try that.
Try it without the Widget, add it directly into your theme files. Thats how i have mine (Just as paganheart mentioned. +rep)