- 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
55 lines
1.1 KiB
PHP
55 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Header Builder Options
|
|
*
|
|
* @package Kadence
|
|
*/
|
|
|
|
namespace Kadence;
|
|
|
|
use Kadence\Theme_Customizer;
|
|
use function Kadence\kadence;
|
|
|
|
Theme_Customizer::add_settings(
|
|
array(
|
|
'image_border_radius' => array(
|
|
'control_type' => 'kadence_range_control',
|
|
'section' => 'general_image',
|
|
'label' => esc_html__( 'Border Radius', 'kadence' ),
|
|
'live_method' => array(
|
|
array(
|
|
'type' => 'css',
|
|
'selector' => '.entry-content :where(.wp-block-image) img, .entry-content :where(.wp-block-kadence-image) img',
|
|
'property' => 'border-radius',
|
|
'pattern' => '$',
|
|
'key' => 'size',
|
|
),
|
|
),
|
|
'default' => kadence()->default( 'image_border_radius' ),
|
|
'input_attrs' => array(
|
|
'min' => array(
|
|
'px' => 0,
|
|
'em' => 0,
|
|
'rem' => 0,
|
|
'%' => 0,
|
|
),
|
|
'max' => array(
|
|
'px' => 100,
|
|
'em' => 12,
|
|
'rem' => 12,
|
|
'%' => 100,
|
|
),
|
|
'step' => array(
|
|
'px' => 1,
|
|
'em' => 0.01,
|
|
'rem' => 0.01,
|
|
'%' => 1,
|
|
),
|
|
'units' => array( 'px', 'em', 'rem', '%' ),
|
|
'responsive' => true,
|
|
),
|
|
),
|
|
)
|
|
);
|
|
|