You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
710 B
PHP
41 lines
710 B
PHP
<?php
|
|
/**
|
|
* Template for displaying job listing archives
|
|
*
|
|
* This template can be overridden by copying it to currenttheme/wp-job-openings/archive-job.php
|
|
*
|
|
* @package wp-job-openings
|
|
* @version 3.2.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
awsm_jobs_get_header();
|
|
|
|
/**
|
|
* before_awsm_jobs_main_content hook
|
|
*
|
|
* @since 1.1
|
|
*/
|
|
do_action( 'before_awsm_jobs_main_content' );
|
|
|
|
?>
|
|
<div class="awsm-job-main awsm-job-archive-content">
|
|
<div class="awsm-job-container">
|
|
|
|
<?php require get_awsm_jobs_template_path( 'job-openings-view' ); ?>
|
|
|
|
</div>
|
|
</div>
|
|
<?php
|
|
/**
|
|
* after_awsm_jobs_main_content hook
|
|
*
|
|
* @since 1.1
|
|
*/
|
|
do_action( 'after_awsm_jobs_main_content' );
|
|
|
|
awsm_jobs_get_footer();
|