How to Hide the "WP User Timezone" Admin Menu

function plt_hide_wp_utz_menus() {
	//Hide the "Settings → WP User Timezone" menu.
	remove_submenu_page('options-general.php', 'wp_utz_settings');
}

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

Where do I put this code?