Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <?php
  2. if ( function_exists( 'ot_get_option' ) ) : ?>
  3. <div class="">
  4. <div id="sidebar_add_slider">
  5. <?php // get the slider array ?>
  6. <?php $slides = ot_get_option( 'home_adverts_section', array() );
  7. if ( ! empty( $slides ) ) {
  8. foreach( $slides as $slide ) {
  9. echo '<div class="single_slide_side">
  10. <a href="'.$slide['home_adverts_section_url'].'" class="normaltip" title="Facebook"><img src="'.$slide['home_adverts_section_thumb'].'" alt=""></a>
  11. </div>';
  12. }
  13. }
  14. ?>
  15. </div>
  16. </div>
  17. <?php
  18. endif;
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement