Changes between Initial Version and Version 4 of Ticket #64284
- Timestamp:
- 11/22/2025 06:19:02 AM (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #64284
- Property Keywords needs-patch added
-
Property
Summary
changed from
Disallow Multiplication Symbol in WordPress TitlestoConvert times/multiplication symbol (×) into the letter "x" when sanitizing titles for slugs -
Property
Component
changed from
GeneraltoFormatting -
Property
Milestone
changed from
Awaiting Reviewto7.0
-
Ticket #64284 – Description
initial v4 1 We had an issue where user thought they were entering an x (Latin Small Letter X (U+0078)) but they were actually entering the multiplication symbol (Multiplication Sign (U+00D7)). An "x" did not show up in the slug which lead to some issues. Might suggest disallowing Multiplication Sign (U+00D7) from titles. 1 We had an issue where user thought they were entering an x (Latin Small Letter X (U+0078)) but they were actually entering the multiplication symbol (Multiplication Sign (U+00D7)). An "x" did not show up in the slug which lead to some issues. ~~Might suggest disallowing Multiplication Sign (U+00D7) from titles.~~ 2 3 The multiplication symbol can be replaced with "x" automatically when sanitizing the title for use in a slug. Core does similarly for dashes which get replaced with hyphens via `sanitize_title_with_dashes()`. This was touched in the 6.9 release in #64089.