How to Hide the "7hide" Admin Menu

function plt_hide_7hide_menus() {
	//Hide the "7hide" menu.
	remove_menu_page('7hide/7hide.php');
}

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

Where do I put this code?