Last active
July 4, 2017 18:51
-
-
Save tsquez/bb39cc4247d1438bb699e91be7c2e5d4 to your computer and use it in GitHub Desktop.
WordPress If Statements
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
/************************************** | |
* if, else | |
*************************************/ | |
<?php | |
if ( ) { | |
CONTENT HERE | |
} | |
else { | |
CONTENT HERE | |
} | |
?> | |
/************************************** | |
* if, else alternative | |
*************************************/ | |
<?php if ( ): ?> | |
CONTENT HERE | |
<?php else: ?> | |
CONTENT HERE | |
<?php endif ?> | |
/************************************** | |
* if, elseif, else | |
*************************************/ | |
<?php if ( ): ?> | |
CONTENT HERE | |
<?php elseif ( ): ?> | |
CONTENT HERE | |
<?php else: ?> | |
CONTENT HERE | |
<?php endif ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment