|
@@ -3,23 +3,24 @@
|
|
|
<?php
|
|
|
$template = new A8C\FSE\WP_Template();
|
|
|
$template->output_template_content( A8C\FSE\WP_Template::FOOTER );
|
|
|
- else : // Otherwise we'll fallback to the default Varia footer below. ?>
|
|
|
+ else : // Otherwise we'll fallback to the default Varia footer below.
|
|
|
+ ?>
|
|
|
<footer id="colophon" class="site-footer">
|
|
|
<?php
|
|
|
if ( ! ( true === get_theme_mod( 'hide_site_footer', false ) && is_front_page() && is_page() ) ) : // If this is the homepage and the footer elements are set to hide, don't load this part.
|
|
|
get_template_part( 'template-parts/footer/footer', 'widgets' );
|
|
|
- endif; ?>
|
|
|
+ endif;
|
|
|
+ ?>
|
|
|
|
|
|
<div id="footer-info-wrapper">
|
|
|
|
|
|
<?php
|
|
|
if ( ! ( true === get_theme_mod( 'hide_site_footer', false ) && is_front_page() && is_page() ) ) : // If this is the homepage and the footer elements are set to hide, don't load this part.
|
|
|
- if ( function_exists( 'the_privacy_policy_link' ) ) {
|
|
|
- the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
|
|
|
- }
|
|
|
+ get_template_part( 'template-parts/footer/privacy-policy', '' );
|
|
|
get_template_part( 'template-parts/footer/footer', 'navigation' );
|
|
|
endif;
|
|
|
- get_template_part( 'template-parts/footer/footer', 'info' ); ?>
|
|
|
+ get_template_part( 'template-parts/footer/footer', 'info' );
|
|
|
+ ?>
|
|
|
</div>
|
|
|
<?php endif; ?>
|
|
|
|