| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/engineering/wp-content/themes/bidnis/inc/theme-functions/ |
Upload File : |
<?php
/**
* Phone and E-mail
*
* @package Bidnis
* @since Bidnis 2.0
*/
/**
* Phone and E-mail
*/
function bidnis_phone_email() { ?>
<?php if ( get_theme_mod( 'phone' ) ) : ?>
<div class="bidnis-phone">
<i class="fa fa-phone"></i>
<a href="tel:<?php echo esc_attr( get_theme_mod( 'phone' ) ); ?>" aria-label="tel <?php echo esc_attr( get_theme_mod( 'phone' ) ); ?>"><?php echo esc_html( get_theme_mod( 'phone' ) ); ?></a>
</div>
<?php endif; ?>
<?php if ( get_theme_mod( 'email' ) ) : ?>
<div class="bidnis-email">
<i class="fa fa-envelope"></i>
<a href="mailto:<?php echo esc_attr( get_theme_mod( 'email' ) ); ?>" aria-label="e-mail <?php echo esc_attr( get_theme_mod( 'email' ) ); ?>" target="_top"><?php echo esc_html( get_theme_mod( 'email' ) ); ?></a>
</div>
<?php endif; ?>
<?php } ?>