Skip to content

Instantly share code, notes, and snippets.

@NorthTexasCreative
Created June 13, 2021 20:53
Show Gist options
  • Select an option

  • Save NorthTexasCreative/29a84fb1b96b8215f4a14c537c170a1d to your computer and use it in GitHub Desktop.

Select an option

Save NorthTexasCreative/29a84fb1b96b8215f4a14c537c170a1d to your computer and use it in GitHub Desktop.
/************ Name Shortcode *********/
function name_shortcode() {
if ( ! function_exists( 'get_field' ) ) {
return;
} ?>
<?php if ( get_field( 'first_name' ) ): ?>
<?php the_field( 'first_name' ); ?><span> </span><?php the_field( 'last_name' ); ?><?php if(has_term((array('partners','associates','counsel','founding-partner-retired','judiciary','of-counsel')), 'attorney-group')): ?><span>, ESQ.</span >
<?php endif; ?>
<?php endif; ?>
<?php }
add_shortcode( 'name', 'name_shortcode' );
/************ End Name Shortcode *********/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment