Snippet: Remove Additional CSS Tab from Customizer
add_action( 'customize_register', function( $wp_customize ) {
$wp_customize->remove_section( 'custom_css' );
}, 15 );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend WPCode)