Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created December 16, 2011 00:38
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 billerickson/1483786 to your computer and use it in GitHub Desktop.
Save billerickson/1483786 to your computer and use it in GitHub Desktop.
<?php
foreach ( $attachments as $attachment_id => $attachment ) {
$credits = get_post_meta( $attachment_id, 'photo_credits', true );
if( !empty( $credits ) )
echo 'Image: ' . $credits;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment