PluginProbe
JobWP – Job Board Plugin for WordPress | Job Listings, Career Page & Applications / 2.3.9
JobWP – Job Board Plugin for WordPress | Job Listings, Career Page & Applications v2.3.9
2.5.0 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 2.4.0 All 33 releases
jobwp / front / view / single.php

single.php in JobWP – Job Board Plugin for WordPress | Job Listings, Career Page & Applications 2.3.9, at front/view/single.php

46 lines 947 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 ?>