How to Hide the "Vinoshipper" Admin Menu

function plt_hide_vinoshipper_menus() {
	//Hide the "Vinoshipper" menu.
	remove_menu_page('vs_injector_settings');
}

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

Where do I put this code?