Using 2011 theme, I like the headers mostly. But specific pages can I make not have headers? How would I do this without too much messy hacking?
I have a child theme ready.
Using 2011 theme, I like the headers mostly. But specific pages can I make not have headers? How would I do this without too much messy hacking?
I have a child theme ready.
In your Child Theme header.php file, you may need to wrap the elements you want visible only on certain pages in a conditional statement;
http://codex.wordpress.org/Conditional_Tags
So I'd use like
is_page( 'About Me And Joe' )
is there a way without hard coding the names of pages? I mean is there a way to 'mark' a page with something?
Looking at it another way around, you could check to see if the page is not something. That may be better than specifying multiple is_page names or IDs.
E.g
if ( !is_page( '17' ) )You must log in to post.