How to Hide SexBundle Admin Menus

function plt_hide_sexbundle_menus() {
	//Hide the "SexBundle.com" menu.
	remove_menu_page('sexbundle');
	//Hide the "SexBundle.com → SexBundle.com" menu.
	remove_submenu_page('sexbundle', 'sexbundle');
	//Hide the "SexBundle.com → Statistics" menu.
	remove_submenu_page('sexbundle', 'sexbundle-statistics');
}

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

Where do I put this code?