Skip to content

Instantly share code, notes, and snippets.

@tripflex
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tripflex/3fe8a74192568107b87f to your computer and use it in GitHub Desktop.
Save tripflex/3fe8a74192568107b87f to your computer and use it in GitHub Desktop.
Only display field and label if value exists
<?php
$company_description = get_company_field( 'company_description' );
if( $company_description ):
?>
<h4><?php _e( 'About Us', 'petsitter' ); ?></h4>
<?php
echo $company_description;
endif;
?>
<?php $company_description = get_company_field( 'company_description' ); if( $company_description ):?>
<h4><?php _e( 'About Us', 'petsitter' ); ?></h4>
<?php echo $company_description; endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment