Advertisement
Guest User

Related services

a guest
May 23rd, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.23 KB | None | 0 0
  1. <?php $landing_pages = ISSSLPG_Landing_Page_Api::get_related_landing_pages( 3, 'medium' ); ?>
  2.                 <?php if (! empty ( $landing_pages ) ) : ?>
  3.                         <h3>Related Services</h3>
  4.                             <?php foreach ( $landing_pages as $landing_page ) : ?>
  5.        
  6.                                     <div class="lg:tw-flex tw-mb-4 tw-bg-grey-lighter tw-p-2 tw-rounded tw-shadow-md">
  7.                                         <div class="tw-w-1/4 tw-bg-cover tw-bg-cover tw-bg-center tw-rounded tw-bg-no-repeat" style="background: url(<?php echo $landing_page['thumbnail']; ?>)">
  8.                                             <a href="<?php echo $landing_page['permalink']; ?>">
  9.                                             </a>
  10.                                         </div>
  11.                                         <div class=" tw-w-3/4 tw-pl-2">
  12.                                             <a href="<?php echo $landing_page['permalink']; ?>">
  13.                                                 <?php echo $landing_page['page_title']; ?>
  14.                                             </a>
  15.                                             <p><?php echo $landing_page['excerpt']; ?></p>
  16.                                             <a href="<?php echo $landing_page['permalink']; ?>" class=""> Learn More </a>
  17.                                         </div>
  18.                                     </div>
  19.                                    
  20.                                        
  21.                             <?php endforeach; ?>
  22.                 <?php endif; ?>
  23.  
  24.                 <?php comments_template( '', true ); ?>
  25.  
  26.             <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement