I want to add a special Widget area only on the front page of my site. I have found out to add it in functions.php but it will apply it to all pages of the site. How to only apply it to homepage?
ThemeShaper Forums » Thematic
[closed]
Add action/filter only on specific pages?
(4 posts)-
Posted 2 years ago #
-
if ( is_home() ) {
your code here..
}Posted 2 years ago # -
I used is_page and it worked. But is_home would be better, thanks!
Posted 2 years ago # -
is_home() didn't work. I discovered is_front_page() which done it.
Posted 2 years ago #
Topic Closed
This topic has been closed to new replies.