Created
February 10, 2012 07:42
-
-
Save withgod/1787468 to your computer and use it in GitHub Desktop.
適当
This file contains 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
--- function.php | |
<?php | |
function exists_custom_field ($field) { | |
return post_custom($field) != "" ? true : false; | |
} | |
?> | |
--- | |
<?php if (exists_custom_field('imagefield_1')) ?> | |
<h4>Photo</h4> | |
<div class="imagefield"> | |
<?php foreach (range(1, 4) as $num) { | |
if (exists_custom_field("imagefield_$num")) { | |
?> | |
<a href=<?php echo post_custom("imagefield_$num")?> rel="lightbox"></a> | |
<?php } | |
} ?> | |
</div> | |
<?php endif ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment