Skip to content

Instantly share code, notes, and snippets.

@sthembi
Created February 22, 2014 21:26
Show Gist options
  • Select an option

  • Save sthembi/9162658 to your computer and use it in GitHub Desktop.

Select an option

Save sthembi/9162658 to your computer and use it in GitHub Desktop.
option-tree loop through list-items (wordpress)
if (function_exists('ot_get_option')) {
/* get the slider array */
$slides = ot_get_option('pageSlider', array());
if (!empty($slides)) {
foreach ($slides as $slide) {
echo '<li><img src="' . $slide['pageSliderImg'] . '" alt="' . $slide['title'] . '" /></a></li>';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment