CSS
-Tricks
treehouse :
what would you like to learn today?
Web Design
Web Development
iOS Development
Show search box
Search
Search in:
All
Articles
Forums
Snippets
Videos
✕
Home
Forums
Snippets
Gallery
Videos
Almanac
Demos
Lodge
Navigation 'n' Search
Forums
Illustration by Nick Sirotich
Forums
»
Other Discussions
A text widget in WP that is displayed only on home page
daredanger
Permalink to comment
#
January 2011
I'm looking for a way to get a text widget displayed only on home page.
Jerm993
Permalink to comment
#
January 2011
I think you can create separate sidebars for each page, not sure how though, google it.
gregerl
Permalink to comment
#
January 2011
there is a wordpress plugin, called widget logic that allows you to do just that.
http://wordpress.org/extend/plugins/widget-logic/
Bob
Permalink to comment
#
January 2011
Or you could use the is_home function, like this:
<?php
if ( is_home() ) {
show widget
} else {
show something else
}
?>
http://codex.wordpress.org/Function_Reference/is_home
Add a Comment
http://wordpress.org/extend/plugins/widget-logic/
http://codex.wordpress.org/Function_Reference/is_home