Advertisement
Osama_Mersal

Untitled

Aug 15th, 2024 (edited)
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.39 KB | None | 0 0
  1. <section class="slider">
  2.  
  3.     <?php if( have_rows('promotion') ): ?>
  4.  
  5.         <div id="slider" class="flexslider">
  6.  
  7.             <ul class="slides">
  8.  
  9.             <?php while ( have_rows('promotion') ) : the_row(); ?>  
  10.  
  11.                 <li>
  12.  
  13.                     <?php $post_object = get_sub_field('promotion');
  14.  
  15.                     if( $post_object ):
  16.                     $post = $post_object; setup_postdata( $post );
  17.                     the_title();
  18.                     echo get_the_id();
  19.                     wp_reset_postdata();
  20.  
  21.                    endif; ?>
  22.  
  23.                 </li>
  24.  
  25.             <?php endwhile; ?>
  26.  
  27.             </ul>
  28.  
  29.         </div>
  30.  
  31.     <?php endif; ?>
  32.  
  33. </section>
  34. <section class="slider">
  35.  
  36.     <?php if( have_rows('blocks') ): ?>
  37.  
  38.         <div id="slider" class="flexslider">
  39.  
  40.             <ul class="slides">
  41.  
  42.             <?php while ( have_rows('blocks') ) : the_row(); ?>  
  43.  
  44.                 <li>
  45.  
  46.                     <?php $post_object = get_sub_field('block');
  47.                     if( $post_object ):
  48.                     $post = $post_object; setup_postdata( $post );
  49.                     the_title();
  50.                     echo get_the_id();
  51.                     wp_reset_postdata();
  52.  
  53.                    endif; ?>
  54.                 </li>
  55.  
  56.             <?php endwhile; ?>
  57.  
  58.             </ul>
  59.  
  60.         </div>
  61.  
  62.     <?php endif; ?>
  63.  
  64. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement