- WordPress 6.9.4 (es_ES) with Kadence theme - Homepage: Hero, La Asociación, Pilares, Beneficios, Eventos, Miembros, Hazte Miembro, Contacto - Brand identity: #13294b navy, #a12932 burgundy, #c69c48 gold - Fonts: Raleway (headings) + Source Sans 3 (body) + Lato (UI) - Plugins: Kadence Blocks, Polylang, Contact Form 7 - Custom CSS with full brand styling and responsive layout - HTTPS enforced via wp-config.php proxy detection
41 lines
727 B
PHP
41 lines
727 B
PHP
<?php
|
|
/**
|
|
* Template part for displaying the footer info
|
|
*
|
|
* @package kadence
|
|
*/
|
|
|
|
namespace Kadence;
|
|
|
|
if ( kadence()->has_content() ) {
|
|
kadence()->print_styles( 'kadence-content' );
|
|
}
|
|
kadence()->print_styles( 'kadence-footer' );
|
|
|
|
?>
|
|
<footer id="colophon" class="site-footer" role="contentinfo">
|
|
<div class="site-footer-wrap">
|
|
<?php
|
|
/**
|
|
* Kadence Top footer
|
|
*
|
|
* Hooked Kadence\top_footer
|
|
*/
|
|
do_action( 'kadence_top_footer' );
|
|
/**
|
|
* Kadence Middle footer
|
|
*
|
|
* Hooked Kadence\middle_footer
|
|
*/
|
|
do_action( 'kadence_middle_footer' );
|
|
/**
|
|
* Kadence Bottom footer
|
|
*
|
|
* Hooked Kadence\bottom_footer
|
|
*/
|
|
do_action( 'kadence_bottom_footer' );
|
|
?>
|
|
</div>
|
|
</footer><!-- #colophon -->
|
|
|