<?php $id=$args['post_id']??get_the_ID();$email=get_post_meta($id,'lt_email',true);$phone=get_post_meta($id,'lt_phone',true);$linkedin=get_post_meta($id,'lt_linkedin',true);if(!$email&&!$phone&&!$linkedin)return; ?><section class="lt-section lt-section--dark" id="profile-contact"><div class="lt-container lt-two-col"><div><div class="lt-kicker"><?php esc_html_e('Contact','law-temple-theme'); ?></div><h2><?php esc_html_e('Contact this professional','law-temple-theme'); ?></h2></div><div><?php if($email): ?><p><a style="color:#fff" href="mailto:<?php echo esc_attr(antispambot($email)); ?>"><?php echo esc_html(antispambot($email)); ?></a></p><?php endif; ?><?php if($phone): ?><p><?php echo esc_html($phone); ?></p><?php endif; ?><?php if($linkedin): ?><p><a style="color:#fff" href="<?php echo esc_url($linkedin); ?>" target="_blank" rel="noopener">LinkedIn</a></p><?php endif; ?></div></div></section>
