Viewing File: /home/maglabs/luchiana/wp-content/themes/floria/skins/default/templates/footer-copyright.php
<?php
/**
* The template to display the copyright info in the footer
*
* @package FLORIA
* @since FLORIA 1.0.10
*/
// Copyright area
?>
<div class="footer_copyright_wrap
<?php
$floria_copyright_scheme = floria_get_theme_option( 'copyright_scheme' );
if ( ! empty( $floria_copyright_scheme ) && ! floria_is_inherit( $floria_copyright_scheme ) ) {
echo ' scheme_' . esc_attr( $floria_copyright_scheme );
}
?>
">
<div class="footer_copyright_inner">
<div class="content_wrap">
<div class="copyright_text">
<?php
$floria_copyright = floria_get_theme_option( 'copyright' );
if ( ! empty( $floria_copyright ) ) {
// Replace {{Y}} or {Y} with the current year
$floria_copyright = str_replace( array( '{{Y}}', '{Y}' ), date( 'Y' ), $floria_copyright );
// Replace {{...}} and ((...)) on the <i>...</i> and <b>...</b>
$floria_copyright = floria_prepare_macros( $floria_copyright );
// Display copyright
echo wp_kses( nl2br( $floria_copyright ), 'floria_kses_content' );
}
?>
</div>
</div>
</div>
</div>
Back to Directory
File Manager