| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/HostingSpaces/admin/pwan.uk/wwwroot - Copy (2)/wp-content/themes/blogier/ |
Upload File : |
<?php
/**
* Option Panel
*
* @package Blogier
*/
function blogier_customize_register($wp_customize) {
$blogier_default = blogier_get_default_theme_options();
$wp_customize->remove_section('social_options');
$wp_customize->remove_control('background_color');
$wp_customize->add_setting('background_color',
array(
'default' => '#fff',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
'transport' => 'refresh',
)
);
$wp_customize->add_control('background_color',
array(
'label' => esc_html__('Background Color', 'blogier'),
'section' => 'colors',
'type' => 'color',
'priority' => 3,
)
);
$wp_customize->remove_section('frontpage_main_banner_section_settings');
}
add_action('customize_register', 'blogier_customize_register');