Quote:
Originally Posted by vangogh
You'd test to see if it's not that page
if(!is_page('about-us'))
You can test the page by the post slug, the post title, and the post id. You can also test for multiple pages as well.
It's on the Codex page about conditionals.
|
Totally agree with vangogh, try also:
!is_page(array(22,'home'))
Pretty much the same, just a little variation
|