Skip to content

Instantly share code, notes, and snippets.

@chrisjimallen
Created September 10, 2013 10:42
Show Gist options
  • Save chrisjimallen/6507709 to your computer and use it in GitHub Desktop.
Save chrisjimallen/6507709 to your computer and use it in GitHub Desktop.
Neat way of handling a value and setting defaults
if (isset( $atts['style'])) {
$form_style = ($atts['style'] == '') ? 1 : $atts['style']; // Choose checkout form style
} else {
$form_style = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment