Advertisement
delvinkrasniqi

row-reverse

Feb 6th, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.73 KB | None | 0 0
  1. <div class="row members_row">
  2.             <div class="col-lg-6 title_content_dienn text-right">
  3.                 <h1 id="titledien"><?php the_title();?></h1>
  4.                 <p><?php the_field('content');?></p>
  5.                 <a href="<?php the_permalink();?>" class="seemore hvr-grow-rotate">See more</a>
  6.             </div>
  7.  
  8.             <div class="col-lg-6 image_dienn">
  9.                 <?php $gallery = get_post_gallery_images();?>
  10.  
  11.                 <div class="single-item">
  12.                     <?php
  13.                         for($i=0;$i<count($gallery);$i++):?>
  14.  
  15.                     <img src="<?php print_r($gallery[$i]);?>" alt="">
  16.  
  17.                     <?php endfor;?>
  18.                 </div>
  19.             </div>
  20.         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement