Disable “Th” ligature in LuaLaTeX

You asked, among other things,

...could you tell me exactly how I should alter my preamble to make selnolig [disable the "Th" ligature globally]?

Here you go:

\usepackage{selnolig} % don't specify a language option
\nolig{Th}{T|h}

For more information, see section 5.5 of the package's user guide, "How to use the selnolig package to suppress certain ligatures globally".


Note: The solution in this answer gives more fine grain control to disable/enable ligatures than using selnolig. AFAIK, selnolig disables the ligature globally for all fonts. The original question doesn’t mention the intent to disable Th ligature for all fonts used in the document, on the contrary it names the exact font family “Adobe Caslon Pro” for which it should be disabled. With fontspec solution you can achieve either result: globally disable for all fonts or on a per-font basis.

This lualatex solution is from the detailed answer here. Run with command >> lualatex <filename>.tex. The source of this is from ConTEXt land, look at section 8.14 "Fonts out of ConTEXt", by Hans Hagen of Pragma ADE

\usepackage{fontspec}
\directlua{
  fonts.handlers.otf.addfeature{
    name = "noth",
    type = "multiple",
    data = {
      ["T_h"] = { "T", "h" },
    },
  }
}

% Option-1 To disable the ligature for just Adobe Caslon Pro
\setmainfont[Ligatures=TeX,RawFeature=+noth]{Adobe Caslon Pro}

% OR

% Option-2 To disable the ligature globally for all fonts
\defaultfontfeatures{RawFeature=+noth}
\setmainfont[Ligatures=TeX]{Adobe Caslon Pro}