How to Hide the "Radix Helper" Admin Menu

function plt_hide_radix_helper_menus() {
	//Hide the "Appearance → Radix Helper" menu.
	remove_submenu_page('themes.php', 'radix_helper');
}

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

Where do I put this code?