Created
March 2, 2015 07:19
-
-
Save bryceadams/639f9e2ee92ada7682b2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
add_action( 'single_job_listing_meta_end', 'display_country_data' ); | |
function display_country_data() { | |
global $post; | |
$country = get_post_meta( $post->ID, '_job_country', true ); | |
if ( $country ) { | |
echo '<li>' . __( 'Country:' ) . ' ' . $country . '</li>'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment