Try:
<?php if( !is_page( array( 2,6,25,46,74 ) ) ) :?>
[ banner code goes here ]
<?php endif;?>
http://codex.wordpress.org/Conditional_Tags#A_PAGE_Page
Will:
<?php if( !is_page( array( 2,6,25,46,74 ) ) ) :?>
[hide banner]
<? else ?>
[show banner]
<?php endif;?>
Work?
Thanks for the quick reply.
Yes – although I’m not sure how you’d code a non-banner, so to speak. 🙂
It didnt quite work, heres my code:
<!-- Start Show/Hide banner section --!>
<?php if( !is_page( array( 6,25,38,31,42 ) ) ) :?>
<? else { ?>
<div class="Main">
<div class="Sheet">
<div class="Sheet-tl"></div>
<div class="Sheet-tr"><div></div></div>
<div class="Sheet-bl"><div></div></div>
<div class="Sheet-br"><div></div></div>
<div class="Sheet-tc"><div></div></div>
<div class="Sheet-bc"><div></div></div>
<div class="Sheet-cl"><div></div></div>
<div class="Sheet-cr"><div></div></div>
<div class="Sheet-cc"></div>
<div class="Sheet-body">
<div class="Header">
<div class="logo">
<h1 id="name-text" class="logo-name">
</h1>
<div id="slogan-text" class="logo-text">
</div>
</div>
<div class="Header-jpeg"></div>
</div>
<?php
}
endif;?>
<!-- End Show/Hide Banner --!>
I tried a few things but it didnt work.
I also tired adding the { } to else
Any ideas?
Forgot to post the error..
Parse error: syntax error, unexpected '{', expecting ':' in /home/deandesi/public_html/bcwizards.co.uk/gemzproductions.co.uk/wp-content/themes/time_to_dance_eve052/time_to_dance_eve052/header.php on line 28
Without the { and } I get:
Parse error: syntax error, unexpected ';', expecting ':' in /home/deandesi/public_html/bcwizards.co.uk/gemzproductions.co.uk/wp-content/themes/time_to_dance_eve052/time_to_dance_eve052/header.php on line 28
Ok, I fixed it.
I ended up with this:
<!-- Start Show/Hide banner section --!>
<?php if( !is_page( array( 6,25,31,36,38,42 ) ) ) :?>
<div class="Main">
<div class="Sheet">
<div class="Sheet-tl"></div>
<div class="Sheet-tr"><div></div></div>
<div class="Sheet-bl"><div></div></div>
<div class="Sheet-br"><div></div></div>
<div class="Sheet-tc"><div></div></div>
<div class="Sheet-bc"><div></div></div>
<div class="Sheet-cl"><div></div></div>
<div class="Sheet-cr"><div></div></div>
<div class="Sheet-cc"></div>
<div class="Sheet-body">
<div class="Header">
<div class="logo">
<h1 id="name-text" class="logo-name">
</h1>
<div id="slogan-text" class="logo-text">
</div>
</div>
<div class="Header-jpeg"></div>
</div>
<?php endif;?>
<!-- End Show/Hide Banner --!>
I didnt understand the coding! lol.
Thanks for your help Esmi 🙂
You can view it here:
http://www.gemzproductions.co.uk