How to Hide the "Twentig" Admin Menu

function plt_hide_twentig_menus() {
	//Hide the "Twentig" menu.
	remove_menu_page('twentig');
}

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

Where do I put this code?