listing-wrapper-start.php 607 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Job Listing Wrapper Start
  4. *
  5. * @author PressTigers
  6. * @package Simple_Job_Board
  7. * @subpackage Simple_Job_Board/templates/listing
  8. * @version 1.0.0
  9. * @since 2.4.3
  10. */
  11. ob_start();
  12. ?>
  13. <div class="sjb-page">
  14. <!-- Start: Jobs Listing Wrapper -->
  15. <?php
  16. $html_listing_start = ob_get_clean();
  17. /**
  18. * Modify Job Listing End Template
  19. *
  20. * @since 2.4.0
  21. *
  22. * @param html $html_listing_end Job Listing End HTML .
  23. */
  24. echo apply_filters( 'sjb_listing_wrapper_start_template', $html_listing_start );