Skip to content

Instantly share code, notes, and snippets.

@spencermorin
Created February 23, 2013 19:32
Show Gist options
  • Save spencermorin/5021005 to your computer and use it in GitHub Desktop.
Save spencermorin/5021005 to your computer and use it in GitHub Desktop.
<?php $color_palette = get_post_meta( get_the_ID(), 'color-palette' ); ?>
<?php foreach( $color_palette[ 0 ] as $color ) : ?>
<div style="width: 50px; height: 50px; background: #<?php echo $color; ?>"></div>
<?php endforeach; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment