How to Hide the "Blaze" Admin Menu

function plt_hide_blaze_css_menus() {
	//Hide the "Settings → Blaze" menu.
	remove_submenu_page('options-general.php', 'blaze-settings');
}

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

Where do I put this code?