64 lines
1.8 KiB
PHP
Executable file
64 lines
1.8 KiB
PHP
Executable file
<?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 Achille_Press
|
|
*/
|
|
|
|
?>
|
|
|
|
<footer id="colophon" class="site-footer">
|
|
<div class="footer-container">
|
|
<?php if ( is_active_sidebar( 'footer-1' ) || is_active_sidebar( 'footer-2' ) || is_active_sidebar( 'footer-3' ) ) : ?>
|
|
<div class="footer-widgets">
|
|
<div class="footer-widget-area">
|
|
<?php if ( is_active_sidebar( 'footer-1' ) ) : ?>
|
|
<div class="footer-widget">
|
|
<?php dynamic_sidebar( 'footer-1' ); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="footer-widget-area">
|
|
<?php if ( is_active_sidebar( 'footer-2' ) ) : ?>
|
|
<div class="footer-widget">
|
|
<?php dynamic_sidebar( 'footer-2' ); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="footer-widget-area">
|
|
<?php if ( is_active_sidebar( 'footer-3' ) ) : ?>
|
|
<div class="footer-widget">
|
|
<?php dynamic_sidebar( 'footer-3' ); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="site-info">
|
|
<div class="copyright">
|
|
© <?php echo date( 'Y' ); ?>
|
|
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
|
|
</div>
|
|
<div class="theme-credit">
|
|
<?php
|
|
/* translators: 1: Theme name, 2: Theme author. */
|
|
printf( esc_html__( 'Powered by %1$s & %2$s', 'achille-press' ),
|
|
'<a href="https://wordpress.org/">WordPress</a>',
|
|
'<a href="https://github.com/your-username/achille-press">Achille Press</a>'
|
|
);
|
|
?>
|
|
</div>
|
|
</div><!-- .site-info -->
|
|
</div><!-- .footer-container -->
|
|
</footer><!-- #colophon -->
|
|
</div><!-- #page -->
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
</body>
|
|
</html>
|