sections() as $id => $section ) { if ( strpos( strtolower( (string) $id ), 'copyright' ) !== false ) { $wp_customize->remove_section( $id ); } } foreach ( $wp_customize->controls() as $id => $control ) { if ( strpos( strtolower( (string) $id ), 'copyright' ) !== false ) { $wp_customize->remove_control( $id ); } } }, 999 );