Your IP : 216.73.216.0
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Moral
*/
$default = restro_cafe_get_default_mods();
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<!-- supports col-1, col-2, col-3 and col-4 -->
<!-- supports unequal-width and equal-width -->
<?php
$count = 0;
for ( $i=1; $i <=4 ; $i++ ) {
if ( is_active_sidebar( 'footer-' . $i ) ) {
$count++;
}
}
if ( 0 !== $count ) : ?>
<div class="footer-widgets-area page-section col-<?php echo esc_attr( $count );?>">
<div class="wrapper">
<?php
for ( $j=1; $j <=4; $j++ ) {
if ( is_active_sidebar( 'footer-' . $j ) ) {
echo '<div class="hentry">';
dynamic_sidebar( 'footer-' . $j );
echo '</div>';
}
}
?>
</div><!-- .wrapper -->
</div><!-- .footer-widget-area -->
<?php endif;
$restro_cafe_search = array( '[the-year]', '[site-link]' );
$replace = array( date( 'Y' ), '<a href="'. esc_url( home_url( '/' ) ) .'">' . get_bloginfo( 'name', 'display' ) . '</a>' );
$copyright = str_replace( $restro_cafe_search, $replace, get_theme_mod( 'restro_cafe_copyright_txt', $default['restro_cafe_copyright_txt'] ) );
$footer_text = get_theme_mod( 'restro_cafe_enable_footer_text', true );
$theme_detail = wp_get_theme();
?>
<div class="site-info">
<div class="wrapper">
<span class="footer-copyright">
<?php if ( $footer_text ) { ?>
<?php echo wp_kses_post( $copyright ); ?>
<?php } ?>
<?php echo esc_html( $theme_detail->get( 'Name') ) . ' ' . esc_html__( 'by', 'restro-cafe' ). ' <a target="_blank" href="'. esc_url( $theme_detail->get( 'AuthorURI' ) ) .'">'. esc_html( ucwords( $theme_detail->get( 'Author' ) ) ) .'</a>' ?>
</span>
</div><!-- .wrapper -->
</div><!-- .site-info -->
</footer><!-- #colophon -->
<?php
$backtop = get_theme_mod( 'restro_cafe_back_to_top_enable', true );
if ( $backtop ) { ?>
<div class="backtotop"><?php echo restro_cafe_get_svg( array( 'icon' => 'up-arrow' ) ); ?></div>
<?php } ?>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>