Skip to content

Instantly share code, notes, and snippets.

@withgod
Created February 10, 2012 07:42
Show Gist options
  • Save withgod/1787468 to your computer and use it in GitHub Desktop.
Save withgod/1787468 to your computer and use it in GitHub Desktop.
適当
--- 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