How to Hide the "DenK Plugin" Admin Menu

function plt_hide_denk_internet_solutions_menus() {
	//Hide the "DenK Plugin" menu.
	remove_menu_page('denk-is');
}

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

Where do I put this code?