How to Hide the "Term order" Admin Menu

function plt_hide_ps_taxonomy_expander_menus() {
	//Hide the "Term order" menu.
	remove_menu_page('ps-taxonomy-expander.php');
}

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

Where do I put this code?