Skip to content

Instantly share code, notes, and snippets.

@farookibrahim
Created April 21, 2020 05:11
Show Gist options
  • Save farookibrahim/312ea8aa063e1dc2ad3d2d47cb744a8e to your computer and use it in GitHub Desktop.
Save farookibrahim/312ea8aa063e1dc2ad3d2d47cb744a8e to your computer and use it in GitHub Desktop.
Jobhunt - Add Job Salary In Job Listing
if ( ! function_exists( 'jh_child_job_listing_job_salary' ) ) {
function jh_child_job_listing_job_salary() {
global $post;
$post = get_post( $post );
if ( ( $salary = wp_get_object_terms( $post->ID, 'job_listing_salary', array( 'fields' => 'names' ) ) ) && is_array( $salary ) ) {
echo '<div class="job-listing_single_job__salary">' . jobhunt_get_wpjm_taxomony_data( $post, 'job_listing_salary', false ) . '</div>';
}
}
}
add_action( 'jobhunt_job_listing_meta', 'jh_child_job_listing_job_salary', 20 );
.job-listing-meta .job-listing_single_job__salary > ul {
list-style-type: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment