Skip to content

Instantly share code, notes, and snippets.

@proframework
Created April 23, 2014 18:05
Show Gist options
  • Save proframework/11226421 to your computer and use it in GitHub Desktop.
Save proframework/11226421 to your computer and use it in GitHub Desktop.
<?php
if ( is_page( 'the-page-slug' ) ) :
?>
THIS WILL SHOW UP ON THE ABOVE PAGE!
<?php
endif;
?>
<?php
if ( is_page( 'another-page-slug' ) ) :
?>
THIS WILL SHOW UP ON THIS OTHER PAGE!
<?php
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment