Created
January 21, 2012 21:15
-
-
Save ninnypants/1654029 to your computer and use it in GitHub Desktop.
Fixed a bunch of errors
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
| <?php | |
| $contact_name = get_post_meta(get_the_ID(), 'secondary-contact-name', true); | |
| if(!empty($contact_name)): | |
| ?> | |
| <dt>Secondary contact</dt> | |
| <dd><?php echo apply_filters('the_content', $contact_name); ?></dd> | |
| <dd><?php echo apply_filters('the_content', get_post_meta(get_the_ID(), 'secondary-contact-phone', true)); ?></dd> | |
| <dd><?php echo apply_filters('the_content', get_post_meta(get_the_ID(), 'secondary-contact-extension', true)); ?></dd> | |
| <dd><?php echo apply_filters('the_content', get_post_meta(get_the_ID(), 'secondary-contact-email', true)); ?></dd> | |
| <?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment