| 1 |
<?php |
| 2 |
# Silence is golden. |
| 3 |
if ( ! defined( 'ABSPATH' ) ) { |
| 4 |
exit; |
| 5 |
} |
| 6 |
|
| 7 |
get_header(); |
| 8 |
|
| 9 |
global $post; |
| 10 |
|
| 11 |
include 'single/header.php'; |
| 12 |
|
| 13 |
// Load anything before single_body_container |
| 14 |
do_action( 'jobwp_single_before_body_container' ); |
| 15 |
?> |
| 16 |
<div class="jobwp-single-body-container"> |
| 17 |
<?php |
| 18 |
if ( have_posts() ) { |
| 19 |
|
| 20 |
while ( have_posts() ) { |
| 21 |
|
| 22 |
the_post(); |
| 23 |
|
| 24 |
$job_title = get_the_title(); |
| 25 |
$job_overview = get_the_content(); |
| 26 |
|
| 27 |
include 'single/post-meta.php'; |
| 28 |
|
| 29 |
include 'single/top-title.php'; |
| 30 |
|
| 31 |
include 'single/job-details.php'; |
| 32 |
} |
| 33 |
|
| 34 |
include 'single/apply-procedure.php'; |
| 35 |
} |
| 36 |
?> |
| 37 |
</div> |
| 38 |
<?php |
| 39 |
// Load anything after single_body_container |
| 40 |
do_action( 'jobwp_single_after_body_container' ); |
| 41 |
|
| 42 |
//Application form modal |
| 43 |
include 'single/applyform-modal.php'; |
| 44 |
|
| 45 |
get_footer(); |
| 46 |
?> |