achille-press/footer.php
gribse 582e4491c0
Some checks failed
CSS Code Linting / Lint CSS (push) Has been cancelled
JS Code Linting / Lint JS (push) Has been cancelled
PHP Code Linting / Parallel lint (push) Has been cancelled
PHP Code Linting / PHPCS check (push) Has been cancelled
clause agent mode "make it look like papermod"
2025-07-26 16:24:01 +02:00

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">
&copy; <?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>