| 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-copyright.php |
<?php
/**
* The template to display the copyright info in the footer
*
* @package WordPress
* @subpackage HALLELUJAH
* @since HALLELUJAH 1.0.10
*/
// Copyright area
?>
<div class="footer_copyright_wrap
<?php
$hallelujah_copyright_scheme = hallelujah_get_theme_option( 'copyright_scheme' );
if ( ! empty( $hallelujah_copyright_scheme ) && ! hallelujah_is_inherit( $hallelujah_copyright_scheme ) ) {
echo ' scheme_' . esc_attr( $hallelujah_copyright_scheme );
}
?>
">
<div class="footer_copyright_inner">
<div class="content_wrap">
<div class="copyright_text">
<?php
$hallelujah_copyright = hallelujah_get_theme_option( 'copyright' );
if ( ! empty( $hallelujah_copyright ) ) {
// Replace {{Y}} or {Y} with the current year
$hallelujah_copyright = str_replace( array( '{{Y}}', '{Y}' ), date( 'Y' ), $hallelujah_copyright );
// Replace {{...}} and ((...)) on the <i>...</i> and <b>...</b>
$hallelujah_copyright = hallelujah_prepare_macros( $hallelujah_copyright );
// Display copyright
echo wp_kses( nl2br( $hallelujah_copyright ),'hallelujah_kses_content' );
}
?>
</div>
</div>
</div>
</div>