Created
April 2, 2012 18:36
-
-
Save jkudish/2286160 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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