Last active
August 8, 2022 20:50
-
-
Save MariaJackson1/882a66af4e157f67f54ccbb833e83cee to your computer and use it in GitHub Desktop.
Remove Additional CSS Setting in WordPress Customizer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_action( 'customize_register', 'prefix_remove_css_section', 15 ); | |
| /** | |
| * Remove the additional CSS section, introduced in 4.7, from the Customizer. | |
| * @param $wp_customize WP_Customize_Manager | |
| */ | |
| function prefix_remove_css_section( $wp_customize ) { | |
| $wp_customize->remove_section( 'custom_css' ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment