- 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
32 lines
955 B
PHP
32 lines
955 B
PHP
<?php
|
|
/**
|
|
* Kadence functions and definitions
|
|
*
|
|
* This file must be parseable by PHP 5.2.
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
|
*
|
|
* @package kadence
|
|
*/
|
|
|
|
define( 'KADENCE_VERSION', '1.5.0' );
|
|
define( 'KADENCE_MINIMUM_WP_VERSION', '6.0' );
|
|
define( 'KADENCE_MINIMUM_PHP_VERSION', '7.4' );
|
|
|
|
// Bail if requirements are not met.
|
|
if ( version_compare( $GLOBALS['wp_version'], KADENCE_MINIMUM_WP_VERSION, '<' ) || version_compare( phpversion(), KADENCE_MINIMUM_PHP_VERSION, '<' ) ) {
|
|
require get_template_directory() . '/inc/back-compat.php';
|
|
return;
|
|
}
|
|
// Include WordPress shims.
|
|
require get_template_directory() . '/inc/wordpress-shims.php';
|
|
|
|
// Load the `kadence()` entry point function.
|
|
require get_template_directory() . '/inc/class-theme.php';
|
|
|
|
// Load the `kadence()` entry point function.
|
|
require get_template_directory() . '/inc/functions.php';
|
|
|
|
// Initialize the theme.
|
|
call_user_func( 'Kadence\kadence' );
|