Skip to content

Instantly share code, notes, and snippets.

@s-hiroshi
Created June 29, 2012 01:53
Show Gist options
  • Save s-hiroshi/3015192 to your computer and use it in GitHub Desktop.
Save s-hiroshi/3015192 to your computer and use it in GitHub Desktop.
WordPress > 条件分岐
<?php if (is_page('foo')) : ?>
<p>foo</p>
<?php elseif (is_page('bar')) : ?>
<p>bar</p>
<?php else : ?>
<p>baz</p>
<? endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment