Advertisement
wdtobibur

Post Slider With CMB2 MetaBox

Sep 30th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. ################
  2. Post Slider With CMB2 metabox use.......
  3.  
  4. $about_over_image=get_post_meta($post->ID,$prefix.'about_over_image',true);
  5.  
  6. $images = get_post_meta(get_the_ID(),'slider_img',true);
  7.  
  8.  
  9. <ul class="slides">
  10.     <?php
  11.         if(is_array($images)){
  12.             foreach ($images as $image){
  13.                 echo '<li><img src="'.$image.'" alt="" /></li>';
  14.             };
  15.         }
  16.     ?>
  17. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement