Files
revision/inc/theme-mods/site-identity.php
2025-08-21 14:40:43 +02:00

73 lines
2.4 KiB
PHP

<?php
/**
* Site Identity
*
* @package Revision
*/
CSCO_Customizer::add_field(
array(
'type' => 'checkbox',
'settings' => 'title_tag',
'label' => esc_html__( 'Use H1 tag for Logo on Homepage', 'revision' ),
'section' => 'title_tagline',
'default' => true,
)
);
CSCO_Customizer::add_field(
array(
'type' => 'image',
'settings' => 'logo',
'label' => esc_html__( 'Main Logo', 'revision' ),
'description' => esc_html__( 'The main logo is used in the navigation bar and mobile view of your website. Logo image will be displayed in its original image dimensions. Please upload the 2x version of your logo via Media Library with ', 'revision' ) . '<code>@2x</code>' . esc_html__( ' suffix for supporting Retina screens. For example ', 'revision' ) . '<code>logo@2x.png</code>' . esc_html__( '. Recommended maximum height is 40px (80px for Retina version).', 'revision' ),
'section' => 'title_tagline',
'default' => '',
)
);
CSCO_Customizer::add_field(
array(
'type' => 'image',
'settings' => 'logo_dark',
'label' => esc_html__( 'Main Logo for Dark Mode', 'revision' ),
'section' => 'title_tagline',
'default' => '',
'active_callback' => array(
array(
'setting' => 'logo',
'operator' => '!=',
'value' => '',
),
),
)
);
CSCO_Customizer::add_field(
array(
'type' => 'image',
'settings' => 'footer_logo',
'label' => esc_html__( 'Footer Logo', 'revision' ),
'description' => esc_html__( 'The footer logo is used in the site footer in desktop and mobile view. Similar to the main logo, upload the 2x version of your logo via Media Library with ', 'revision' ) . '<code>@2x</code>' . esc_html__( ' suffix for supporting Retina screens. For example ', 'revision' ) . '<code>logo-footer@2x.png</code>' . esc_html__( '. Recommended maximum height is 80px (160px for Retina version).', 'revision' ),
'section' => 'title_tagline',
'default' => '',
)
);
CSCO_Customizer::add_field(
array(
'type' => 'image',
'settings' => 'footer_logo_dark',
'label' => esc_html__( 'Footer Logo for Dark Mode', 'revision' ),
'section' => 'title_tagline',
'default' => '',
'active_callback' => array(
array(
'setting' => 'footer_logo',
'operator' => '!=',
'value' => '',
),
),
)
);