| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/blueversionx/wp-content/themes/stargaze/skins/default/templates/ |
Upload File : |
<?php
/**
* The template to display the site logo in the footer
*
* @package STARGAZE
* @since STARGAZE 1.0.10
*/
// Logo
if ( stargaze_is_on( stargaze_get_theme_option( 'logo_in_footer' ) ) ) {
$stargaze_logo_image = stargaze_get_logo_image( 'footer' );
$stargaze_logo_text = get_bloginfo( 'name' );
if ( ! empty( $stargaze_logo_image['logo'] ) || ! empty( $stargaze_logo_text ) ) {
?>
<div class="footer_logo_wrap">
<div class="footer_logo_inner">
<?php
if ( ! empty( $stargaze_logo_image['logo'] ) ) {
$stargaze_attr = stargaze_getimagesize( $stargaze_logo_image['logo'] );
echo '<a href="' . esc_url( home_url( '/' ) ) . '">'
. '<img src="' . esc_url( $stargaze_logo_image['logo'] ) . '"'
. ( ! empty( $stargaze_logo_image['logo_retina'] ) ? ' srcset="' . esc_url( $stargaze_logo_image['logo_retina'] ) . ' 2x"' : '' )
. ' class="logo_footer_image"'
. ' alt="' . esc_attr__( 'Site logo', 'stargaze' ) . '"'
. ( ! empty( $stargaze_attr[3] ) ? ' ' . wp_kses_data( $stargaze_attr[3] ) : '' )
. '>'
. '</a>';
} elseif ( ! empty( $stargaze_logo_text ) ) {
echo '<h1 class="logo_footer_text">'
. '<a href="' . esc_url( home_url( '/' ) ) . '">'
. esc_html( $stargaze_logo_text )
. '</a>'
. '</h1>';
}
?>
</div>
</div>
<?php
}
}