| 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/eglisebaa/www/wp-content/themes/hallelujah-child/templates/ |
| Current File : /home/eglisebaa/www/wp-content/themes/hallelujah-child/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>
<?php $hallelujah_menu_footer = hallelujah_get_nav_menu( 'menu_footer' );
if ( ! empty( $hallelujah_menu_footer ) ) {
?>
<div class="footer_menu_wrap">
<div class="footer_menu_inner">
<?php
hallelujah_show_layout(
$hallelujah_menu_footer,
'<nav class="menu_footer_nav_area sc_layouts_menu sc_layouts_menu_default"'
. ' itemscope="itemscope" itemtype="' . esc_attr( hallelujah_get_protocol( true ) ) . '//schema.org/SiteNavigationElement"'
. '>',
'</nav>'
);
?>
</div>
</div>
<?php
}
if ( hallelujah_is_on( hallelujah_get_theme_option( 'socials_in_footer' ) ) ) {
$hallelujah_output = hallelujah_get_socials_links();
if ( '' != $hallelujah_output ) {
?>
<div class="footer_socials_wrap socials_wrap">
<div class="footer_socials_inner">
<?php hallelujah_show_layout( $hallelujah_output ); ?>
</div>
</div>
<?php
}
}
?>
</div>
</div>
</div>