Changes between Initial Version and Version 1 of Ticket #57592
- Timestamp:
- 01/31/2023 04:44:50 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #57592 – Description
initial v1 1 1 when a slug on Hebrew the sort in admin its not work and we are find a solution for this 2 2 this one when you add this to the core the sort is start work א-ת 3 4 / Rewrite WP Core sanitize key (hebrew support)3 {{{ 4 // Rewrite WP Core sanitize key (hebrew support) 5 5 6 6 add_filter('sanitize_key', 'hebrew_sanitize_key', 10, 2); … … 16 16 return $sanitized_key; 17 17 } 18 }}}