'default', 'service_blink_layout_setting' => 'default', 'blog_listed_layout_setting' => 'default', ); } else { $array_new = array( 'header_classic_layout_setting' => 'classic', 'service_blink_layout_setting' => 'blink', 'blog_listed_layout_setting' => 'listed', ); } $array_old = array( // general settings 'footer_copyright_text' => '

' . __('Proudly powered by WordPress | Theme: Quality Blue by Webriti', 'quality-blue') . '

', ); return $result = array_merge($array_new, $array_old); } } if (!function_exists('wp_body_open')) { function wp_body_open() { do_action('wp_body_open'); } } add_action('customize_register', 'quality_blue_remove_custom', 1000); function quality_blue_remove_custom($wp_customize) { $wp_customize->remove_section('theme_color'); }