Skip to content

Instantly share code, notes, and snippets.

@invmatt
Created October 13, 2013 17:54
Show Gist options
  • Save invmatt/6965204 to your computer and use it in GitHub Desktop.
Save invmatt/6965204 to your computer and use it in GitHub Desktop.
WP Custom repeatable metabox
<?php
echo '<ul class="iv-slider">';
$sliders = get_post_meta( get_the_id(), 'gp', false );
foreach ( $sliders as $slider ) {
echo '<li class="iv-slide">';
echo '<h3>'.$slider["iv-slider-title"].'</h3>';
echo '<p>'.$slider["iv-slider-desc"].'</p>';
echo wp_get_attachment_image(array_shift($slider["iv-slider-img"]));
echo '</li>';
}
echo '</ul>';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment