Skip to content

Instantly share code, notes, and snippets.

@kristianb21
Created October 7, 2014 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kristianb21/fbbbe6df62f3dcc8123f to your computer and use it in GitHub Desktop.
Save kristianb21/fbbbe6df62f3dcc8123f to your computer and use it in GitHub Desktop.
wp switch case
<?php
switch ($i):
case 0:
echo "i equals 0";
break;
default:
//code here
endswitch;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment