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
|
||||
/**
|
||||
* Breadcrumb Options
|
||||
*
|
||||
* @package Kadence
|
||||
*/
|
||||
|
||||
namespace Kadence;
|
||||
|
||||
use Kadence\Theme_Customizer;
|
||||
use function Kadence\kadence;
|
||||
|
||||
Theme_Customizer::add_settings(
|
||||
array(
|
||||
'breadcrumb_engine' => array(
|
||||
'control_type' => 'kadence_select_control',
|
||||
'section' => 'breadcrumbs',
|
||||
'transport' => 'refresh',
|
||||
'default' => kadence()->default( 'breadcrumb_engine' ),
|
||||
'label' => esc_html__( 'Breadcrumb Engine', 'kadence' ),
|
||||
'input_attrs' => array(
|
||||
'options' => array(
|
||||
'' => array(
|
||||
'name' => __( 'Default', 'kadence' ),
|
||||
),
|
||||
'rankmath' => array(
|
||||
'name' => __( 'RankMath (must have activated in plugin)', 'kadence' ),
|
||||
),
|
||||
'yoast' => array(
|
||||
'name' => __( 'Yoast (must have activated in plugin)', 'kadence' ),
|
||||
),
|
||||
'seopress' => array(
|
||||
'name' => __( 'SEOPress (must have activated in plugin)', 'kadence' ),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
'breadcrumb_home_icon' => array(
|
||||
'control_type' => 'kadence_switch_control',
|
||||
'sanitize' => 'kadence_sanitize_toggle',
|
||||
'section' => 'breadcrumbs',
|
||||
'default' => kadence()->default( 'breadcrumb_home_icon' ),
|
||||
'label' => esc_html__( 'Use icon for home?', 'kadence' ),
|
||||
'transport' => 'refresh',
|
||||
'context' => array(
|
||||
array(
|
||||
'setting' => 'breadcrumb_engine',
|
||||
'operator' => '=',
|
||||
'value' => '',
|
||||
),
|
||||
),
|
||||
),
|
||||
)
|
||||
);
|
||||
Reference in New Issue
Block a user