Tips on Customizing Simple CSS

How to Hide the "Simple CSS" Admin Menu

function plt_hide_simple_css_menus() {
	//Hide the "Appearance → Simple CSS" menu.
	remove_submenu_page('themes.php', 'simple-css');
}

add_action('admin_menu', 'plt_hide_simple_css_menus', 11);

Where do I put this code?

How to Hide the "Simple CSS" Meta Box

function plt_hide_simple_css_metaboxes() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Hide the "Simple CSS" meta box.
	remove_meta_box('simple_css_metabox', $screen->id, 'normal');
}

add_action('add_meta_boxes', 'plt_hide_simple_css_metaboxes', 20);