Current File : /home/mdkeenpw/www/wp-content/themes/globallogistics/skins/default/templates/footer-logo.php |
<?php
/**
* The template to display the site logo in the footer
*
* @package GLOBALLOGISTICS
* @since GLOBALLOGISTICS 1.0.10
*/
// Logo
if ( globallogistics_is_on( globallogistics_get_theme_option( 'logo_in_footer' ) ) ) {
$globallogistics_logo_image = globallogistics_get_logo_image( 'footer' );
$globallogistics_logo_text = get_bloginfo( 'name' );
if ( ! empty( $globallogistics_logo_image['logo'] ) || ! empty( $globallogistics_logo_text ) ) {
?>
<div class="footer_logo_wrap">
<div class="footer_logo_inner">
<?php
if ( ! empty( $globallogistics_logo_image['logo'] ) ) {
$globallogistics_attr = globallogistics_getimagesize( $globallogistics_logo_image['logo'] );
echo '<a href="' . esc_url( home_url( '/' ) ) . '">'
. '<img src="' . esc_url( $globallogistics_logo_image['logo'] ) . '"'
. ( ! empty( $globallogistics_logo_image['logo_retina'] ) ? ' srcset="' . esc_url( $globallogistics_logo_image['logo_retina'] ) . ' 2x"' : '' )
. ' class="logo_footer_image"'
. ' alt="' . esc_attr__( 'Site logo', 'globallogistics' ) . '"'
. ( ! empty( $globallogistics_attr[3] ) ? ' ' . wp_kses_data( $globallogistics_attr[3] ) : '' )
. '>'
. '</a>';
} elseif ( ! empty( $globallogistics_logo_text ) ) {
echo '<h1 class="logo_footer_text">'
. '<a href="' . esc_url( home_url( '/' ) ) . '">'
. esc_html( $globallogistics_logo_text )
. '</a>'
. '</h1>';
}
?>
</div>
</div>
<?php
}
}