Skip to content

Instantly share code, notes, and snippets.

@tsquez
Last active July 4, 2017 18:51
Show Gist options
  • Save tsquez/bb39cc4247d1438bb699e91be7c2e5d4 to your computer and use it in GitHub Desktop.
Save tsquez/bb39cc4247d1438bb699e91be7c2e5d4 to your computer and use it in GitHub Desktop.
WordPress If Statements
/**************************************
* 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