How to Hide the "Edit Author Slug" Admin Menu

function plt_hide_edit_author_slug_menus() {
	//Hide the "Settings → Edit Author Slug" menu.
	remove_submenu_page('options-general.php', 'edit-author-slug');
}

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

Where do I put this code?