| 12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * The template for displaying job title in list view
- *
- * Override this template by copying it to yourtheme/simple_job_board/listing/list-view/title.php
- *
- * @author PressTigers
- * @package Simple_Job_Board
- * @subpackage Simple_Job_Board/templates/listing/list-view
- * @version 1.0.0
- * @since 2.2.3
- * @since 2.3.0 Added "sjb_list_view_title_template" filter.
- */
- ob_start();
- // Job Title
- sjb_the_title('<span class="job-title">', '</span>' );
- $html = ob_get_clean();
- /**
- * Modify the Job Listing -> Job Title Template.
- *
- * @since 2.3.0
- *
- * @param html $html Job Title HTML.
- */
- echo apply_filters( 'sjb_list_view_title_template', $html );
|