![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/hessa.corals.io/wp-content/themes/kicker/skins/writer/templates/ |
<?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>