Template Single Listing Default
View the current version of single-listing.php on GitHub.
Single Listing: Loop Content
<div class="loop-content"> <?php while ( have_posts() ) : // The Loop the_post(); do_action('epl_property_single'); comments_template(); // include comments template endwhile; // end of one post ?> </div>
Single Listing: Loop Pagination
<div class="loop-footer"> <!-- Previous/Next page navigation --> <div class="loop-utility clearfix"> <?php do_action('epl_pagination'); ?> </div> </div>