Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created January 9, 2025 22:28
Show Gist options
  • Save tripflex/150b479f0c5a5b4f890fef1aea2959cd to your computer and use it in GitHub Desktop.
Save tripflex/150b479f0c5a5b4f890fef1aea2959cd to your computer and use it in GitHub Desktop.
Make sure job_location translation is handled correctly (as core WPJM pulls directly from database)
<?php
add_filter( 'the_job_location', 'smyles_the_job_location_translatable', 99, 2 );
function smyles_the_job_location_translatable( $job_location, $post ){
// We don't want to override the auto generated geolocation address information
if ( get_option( 'job_manager_display_location_address' ) === '1' ) {
return $job_location;
}
return get_job_field('job_location', $post->ID );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment