21 lines
658 B
PHP
Executable File
21 lines
658 B
PHP
Executable File
<?php
|
|
|
|
// #############################
|
|
// AJOUT D'UN ESPACE LOGO CUSTOM
|
|
// #############################
|
|
|
|
function add_logo_customizer_settings($wp_customize) {
|
|
$wp_customize->add_setting('logo_semlex_dark');
|
|
|
|
// Add a control to upload the hover logo
|
|
$wp_customize->add_control(new WP_Customize_Image_Control($wp_customize, 'logo_semlex_dark', array(
|
|
'label' => 'Logo Semlex Sombre',
|
|
'section' => 'title_tagline', //this is the section where the custom-logo from WordPress is
|
|
'settings' => 'logo_semlex_dark',
|
|
'priority' => 8 // show it just below the custom-logo
|
|
)));
|
|
}
|
|
|
|
add_action('customize_register', 'add_logo_customizer_settings');
|
|
|