Hi folks
I am trying to serve specific banners on one of my wpressed sites depending on the pageslug..
I had a bunch of pages which was ok
eg.
Code:
if ( is_page('casinos') )
include(TEMPLATEPATH . '/bannerincludes/casinostop.inc');
however I have moved some pages to make them posts
how do i say something like
Code:
if ( is_post('casinos') )
include(TEMPLATEPATH . '/bannerincludes/casinostop.inc');
I have tried using the postID rather than 'casinos' but to no avail.
There is no is_post function..
any help appreciated. From what i read, I was sure WPress treats posts and pages pretty much identically
cheers
niall