How to Hide the "Daisy Links" Admin Menu

function plt_hide_daisy_links_menus() {
	//Hide the "Daisy Links" menu.
	remove_menu_page('daisy-links');
}

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

Where do I put this code?