Viewing File: /home/maglabs/mascotte/wp-content/themes/splendour/skins/default/templates/footer-logo.php
<?php
/**
* The template to display the site logo in the footer
*
* @package SPLENDOUR
* @since SPLENDOUR 1.0.10
*/
// Logo
if ( splendour_is_on( splendour_get_theme_option( 'logo_in_footer' ) ) ) {
$splendour_logo_image = splendour_get_logo_image( 'footer' );
$splendour_logo_text = get_bloginfo( 'name' );
if ( ! empty( $splendour_logo_image['logo'] ) || ! empty( $splendour_logo_text ) ) {
?>
<div class="footer_logo_wrap">
<div class="footer_logo_inner">
<?php
if ( ! empty( $splendour_logo_image['logo'] ) ) {
$splendour_attr = splendour_getimagesize( $splendour_logo_image['logo'] );
echo '<a href="' . esc_url( home_url( '/' ) ) . '">'
. '<img src="' . esc_url( $splendour_logo_image['logo'] ) . '"'
. ( ! empty( $splendour_logo_image['logo_retina'] ) ? ' srcset="' . esc_url( $splendour_logo_image['logo_retina'] ) . ' 2x"' : '' )
. ' class="logo_footer_image"'
. ' alt="' . esc_attr__( 'Site logo', 'splendour' ) . '"'
. ( ! empty( $splendour_attr[3] ) ? ' ' . wp_kses_data( $splendour_attr[3] ) : '' )
. '>'
. '</a>';
} elseif ( ! empty( $splendour_logo_text ) ) {
echo '<h1 class="logo_footer_text">'
. '<a href="' . esc_url( home_url( '/' ) ) . '">'
. esc_html( $splendour_logo_text )
. '</a>'
. '</h1>';
}
?>
</div>
</div>
<?php
}
}
Back to Directory
File Manager