HEX
Server: Apache
System: Linux webd003.cluster128.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: slyfwmm (169339)
PHP: 8.1.34
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/slyfwmm/laretediclo/wp-content/themes/kicker/skins/default/templates/footer-copyright.php
<?php
/**
 * The template to display the copyright info in the footer
 *
 * @package KICKER
 * @since KICKER 1.0.10
 */

// Copyright area
?> 
<div class="footer_copyright_wrap
<?php
$kicker_copyright_scheme = kicker_get_theme_option( 'copyright_scheme' );
if ( ! empty( $kicker_copyright_scheme ) && ! kicker_is_inherit( $kicker_copyright_scheme  ) ) {
	echo ' scheme_' . esc_attr( $kicker_copyright_scheme );
}
?>
				">
	<div class="footer_copyright_inner">
		<div class="content_wrap">
			<div class="copyright_text">
			<?php
				$kicker_copyright = kicker_get_theme_option( 'copyright' );
			if ( ! empty( $kicker_copyright ) ) {
				$kicker_copyright = str_replace( array( '{{Y}}', '{Y}' ), date( 'Y' ), $kicker_copyright );
				$kicker_copyright = kicker_prepare_macros( $kicker_copyright );
				// Display copyright
				echo wp_kses( nl2br( $kicker_copyright ), 'kicker_kses_content' );
			}
			?>
			</div>
		</div>
	</div>
</div>