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.40 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="">
  7.                                         <div class="" style="background: url(<?php echo $landing_page['thumbnail']; ?>)">
  8.                                             <a href="<?php echo $landing_page['permalink']; ?>">
  9.                                             </a>
  10.                                         </div>
  11.                                         <div class="">
  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; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement