Created
January 9, 2025 22:28
-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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