Advertisement
Guest User

Untitled

a guest
Jul 16th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php if ( have_posts() ) : ?>
  2. <?php while ( have_posts() ) : the_post(); ?>
  3.     <?php $pods->fetch( get_the_ID() ); ?>
  4.     //reset id
  5.         $pods->id = $pods->id();
  6.          
  7.         //get the template
  8.         $temp = $pods->template( 'All Courses Archive Page' );
  9.         //output template if it exists
  10.         if ( isset( $temp )  ) {  
  11.             echo $temp;
  12.         }
  13. <?php endwhile; ?>
  14. <?php else: ?>
  15.     No Content Found
  16. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement