mirror of
https://gh.wpcy.net/https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2026-04-25 04:52:19 +08:00
16 lines
360 B
PHP
16 lines
360 B
PHP
<?php
|
|
|
|
/*
|
|
* Plugin Name: Alphanumeric slugs only
|
|
* Plugin URI: https://www.unicode.org/versions/Unicode16.0.0/core-spec/chapter-4/#G134153
|
|
*/
|
|
|
|
add_filter(
|
|
'sanitize_title',
|
|
static function ($title) {
|
|
// Let core handle printable ASCII characters
|
|
return preg_replace('/[^\x20-\x7E\p{N}\p{L}]+/u', ' ', $title);
|
|
},
|
|
0,
|
|
1
|
|
);
|