HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/www/theselfmasterybookclub.com/wp-content/themes/blogier/frontpage-options.php
<?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');