Skip to content

Instantly share code, notes, and snippets.

@leanneromak
Last active August 29, 2015 14:26
Show Gist options
  • Save leanneromak/248805422a40116dda9d to your computer and use it in GitHub Desktop.
Save leanneromak/248805422a40116dda9d to your computer and use it in GitHub Desktop.
php conditional for post class
<?php if( is_single( 'field_name1' ) ): ?>
//do something
<?php elseif( is_single( 'fieldname2' ) ): ?>
//do something else
<?php elseif( is_single( '' ) ): ?>
//this is the default
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment