Hello,
WP replaces quotes (" or ") in Titles and Content by default to a typographic quote, eg ″ (double right quote). This can be disabled for titles using remove_filter(“the_title”, “wptexturize”);
My case:
i have a string like eg <Testword "> (ending in a straight double quote) and use that in an X accordion as title, then X replaces that quote by `` (that are TWO single left quotes).
Testword " becomes Testword ``
So i try th HTML entity <Testword "> which totally crashes the interpreter.
My Question: What do i need to do to have proper quotes in eg accordions titles? Of course i truly need them, because the straight quotes are used as inch measurement, eg <2 inch disk> equals 2 " disk.
And yes, i know why you are masking them, but i need to have a correct solution…
Marc

