How to Hide the "Daisy Comments" Admin Menu

function plt_hide_daisy_comments_menus() {
	//Hide the "Daisy Comments" menu.
	remove_menu_page('daisy-comments');
}

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

Where do I put this code?