Created
June 29, 2012 01:53
-
-
Save s-hiroshi/3015192 to your computer and use it in GitHub Desktop.
WordPress > 条件分岐
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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