I know how to do conditional statements based on a page ID, page name or url slug, but I'm looking to do something slightly different. I'm looking for a conditional statement for any page that has a given word in the title (or slug would work, too).
I've tried:
<?php if ( is_page('keyword') ) { ?>
...thinking that it might work because that keyword is in the title and slug, but it didn't work. Is there some kind of wildcard I could use, like * or % or something like that?
thanks,
Mike