| Linux webm007.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 Path : /home/e/g/l/eglisebaa/www/wp-content/themes/hallelujah/templates/ |
| Current File : /home/e/g/l/eglisebaa/www/wp-content/themes/hallelujah/templates/footer-logo.php |
<?php
/**
* The template to display the site logo in the footer
*
* @package WordPress
* @subpackage HALLELUJAH
* @since HALLELUJAH 1.0.10
*/
// Logo
if ( hallelujah_is_on( hallelujah_get_theme_option( 'logo_in_footer' ) ) ) {
$hallelujah_logo_image = hallelujah_get_logo_image( 'footer' );
$hallelujah_logo_text = get_bloginfo( 'name' );
if ( ! empty( $hallelujah_logo_image['logo'] ) || ! empty( $hallelujah_logo_text ) ) {
?>
<div class="footer_logo_wrap">
<div class="footer_logo_inner">
<?php
if ( ! empty( $hallelujah_logo_image['logo'] ) ) {
$hallelujah_attr = hallelujah_getimagesize( $hallelujah_logo_image['logo'] );
echo '<a href="' . esc_url( home_url( '/' ) ) . '">'
. '<img src="' . esc_url( $hallelujah_logo_image['logo'] ) . '"'
. ( ! empty( $hallelujah_logo_image['logo_retina'] ) ? ' srcset="' . esc_url( $hallelujah_logo_image['logo_retina'] ) . ' 2x"' : '' )
. ' class="logo_footer_image"'
. ' alt="' . esc_attr__( 'Site logo', 'hallelujah' ) . '"'
. ( ! empty( $hallelujah_attr[3] ) ? ' ' . wp_kses_data( $hallelujah_attr[3] ) : '' )
. '>'
. '</a>';
} elseif ( ! empty( $hallelujah_logo_text ) ) {
echo '<h1 class="logo_footer_text">'
. '<a href="' . esc_url( home_url( '/' ) ) . '">'
. esc_html( $hallelujah_logo_text )
. '</a>'
. '</h1>';
}
?>
</div>
</div>
<?php
}
}