Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Created March 2, 2015 07:19
Show Gist options
  • Save bryceadams/639f9e2ee92ada7682b2 to your computer and use it in GitHub Desktop.
Save bryceadams/639f9e2ee92ada7682b2 to your computer and use it in GitHub Desktop.
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