Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created March 30, 2015 22:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tripflex/2744c7b61231d670baf6 to your computer and use it in GitHub Desktop.
Save tripflex/2744c7b61231d670baf6 to your computer and use it in GitHub Desktop.
Only output field if it has a value
<?php
$some_field = get_job_field( 'some_meta_key' );
if( ! empty( $some_field ) ) {
echo "<h3>Some Field:</h3>";
echo $some_field;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment