Created
August 13, 2021 15:13
-
-
Save artikus11/97b59ce00cf5d875cf8b9519d9e34c72 to your computer and use it in GitHub Desktop.
Обрезка заголовков атрибутов до нужной длины
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( | |
'sanitize_taxonomy_name', | |
function ( $urldecode ) { | |
return mb_substr( $urldecode, 0, 26, 'utf-8' ); | |
}, | |
10, | |
2 | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment