2024-04-15 16:00:49 +02:00
|
|
|
<?php
|
2024-04-16 15:25:22 +02:00
|
|
|
|
2024-04-15 16:00:49 +02:00
|
|
|
/**
|
|
|
|
* The template for displaying the footer
|
|
|
|
*
|
|
|
|
* Contains the closing of the `#content` element and all content thereafter.
|
|
|
|
*
|
|
|
|
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
|
|
|
|
*
|
|
|
|
* @package WowPress
|
|
|
|
*/
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
</div><!-- #content -->
|
2024-04-16 15:25:22 +02:00
|
|
|
<?php if (is_active_sidebar('right-widgets') && get_sidebar_status('right')) : ?>
|
2024-04-22 15:38:22 +02:00
|
|
|
<div class="widget-wrapper right-widgets" id="sidebar_right">
|
2024-04-16 15:25:22 +02:00
|
|
|
<?php dynamic_sidebar('right-widgets'); ?>
|
2024-04-15 16:00:49 +02:00
|
|
|
</div>
|
2024-04-16 15:25:22 +02:00
|
|
|
<?php endif; ?>
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
</div> <!-- grid -->
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
<div class="sticky top-[100vh]">
|
|
|
|
<?php if (is_active_sidebar('bottom-widgets') && get_sidebar_status('bottom')) : ?>
|
2024-04-22 15:38:22 +02:00
|
|
|
<div class="widget-wrapper bottom-widgets" id="sidebar_bottom">
|
2024-04-16 15:25:22 +02:00
|
|
|
<?php dynamic_sidebar('bottom-widgets'); ?>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
<?php wp_footer(); ?>
|
2024-04-16 15:25:22 +02:00
|
|
|
</div>
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|