Created
June 13, 2021 20:53
-
-
Save NorthTexasCreative/29a84fb1b96b8215f4a14c537c170a1d 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
| /************ 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