Page 1 of 1

Home page only links on a Wordpress blog

Posted: Thu Jul 24, 2014 8:56 pm
by vrocks
Google does not like sitewide linking anymore. It isn't only bad for your linking partner, it is bad for you as well.

You can add the plugin: widget logic
Then on your widgets for blogrolls you can enter in the widget logic box: is_home()

This will tell WP to only load this widget if the page is the home page.
You can also use this widget to show things like:

is_category('13') - where you want to show the widget only on the category 13 page.
is_tag('milf') - only show this widget if this is the milf tag page.
in_tag('milf') - if this page contains a post that uses that tag.
!is_single() - Don't show this extra long widget if this is a single post.

You get the idea...

Re: Home page only links on a Wordpress blog

Posted: Fri Jul 25, 2014 5:57 am
by 3xpreview
I use Display widget plug-in for the same purpose.

Re: Home page only links on a Wordpress blog

Posted: Fri Jul 25, 2014 9:03 pm
by vrocks
Much easier solution than mine for the casual user.