So, I'm trying to get rid of these widgets that appear in the Customizer to simplify the setup.
I can remove the tagline and the default site title with this code:
$wp_customize->remove_section( 'title_tagline' );
$wp_customize->remove_section( 'static_front_page' );
Any ideas on how to remove widgets using similar code?
source
share