is_home() not working
-
I noticed that is_home() does not return true when you are using a static page as your Front page in WP 2.1
The alternative suggested in 49832 works (if you change the != into ==):
<?php if ($_SERVER['QUERY_STRING'] == '') { ?>
... home page stuff ...
<?php } ?>
but I was wondering if there were other solutions.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘is_home() not working’ is closed to new replies.