Skip to content

Instantly share code, notes, and snippets.

@jkudish
Created April 2, 2012 18:36
Show Gist options
  • Save jkudish/2286160 to your computer and use it in GitHub Desktop.
Save jkudish/2286160 to your computer and use it in GitHub Desktop.
<?php
if ( is_page() ) {
echo 'this is a page';
} elseif ( is_single() ) {
echo 'this is a post';
echo <br>how wonderful!';
} else {
echo 'not a page or post';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment