Created
February 22, 2014 21:26
-
-
Save sthembi/9162658 to your computer and use it in GitHub Desktop.
option-tree loop through list-items (wordpress)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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