Action hook before a single job wrapper
add_action( 'job_bm_before_single_job', 'job_bm_before_single_job', 5 );
if ( ! function_exists( 'job_bm_before_single_job' ) ) {
function job_bm_before_single_job(){
?>
<pre>Content before single job</pre>
<?php
}
}
