feat: initial ACRIB WordPress deployment
- 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
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/**
|
||||
* The Editor customize control extends the WP_Customize_Control class.
|
||||
*
|
||||
* @package customizer-controls
|
||||
*/
|
||||
|
||||
if ( ! class_exists( 'WP_Customize_Control' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Class Kadence_Control_Blank
|
||||
*
|
||||
* @access public
|
||||
*/
|
||||
class Kadence_Control_Editor extends WP_Customize_Control {
|
||||
/**
|
||||
* Control type
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $type = 'kadence_editor_control';
|
||||
|
||||
/**
|
||||
* Additional arguments passed to JS.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $default = array();
|
||||
|
||||
/**
|
||||
* Additional arguments passed to JS.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $input_attrs = array();
|
||||
|
||||
/**
|
||||
* Refresh the parameters passed to the JavaScript via JSON.
|
||||
*/
|
||||
public function to_json() {
|
||||
parent::to_json();
|
||||
$this->json['default'] = $this->default;
|
||||
$this->json['input_attrs'] = $this->input_attrs;
|
||||
}
|
||||
/**
|
||||
* Empty Render Function to prevent errors.
|
||||
*/
|
||||
public function render_content() {
|
||||
}
|
||||
}
|
||||
$wp_customize->register_control_type( 'Kadence_Control_Editor' );
|
||||
Reference in New Issue
Block a user