I was inspired by a post on this forum, being able to show something different based on a certain page:
Code:
<?php if ( is_page('A_PAGE') ) { ?> <!-- Something --> <?php } ?>
Code:
<?php if ( is_page('A_PAGE') ) { ?> <!-- Something --> <?php } ?> <?php if ( is_page('ANOTHER_PAGE') ) { ?> <!-- Something --> <?php } ?>