How to Hide the "Clerk" Admin Menu

function plt_hide_clerkio_menus() {
	//Hide the "Clerk" menu.
	remove_menu_page('clerk');
}

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

Where do I put this code?