Skip to content

Instantly share code, notes, and snippets.

@artikus11
Created August 13, 2021 15:13
Show Gist options
  • Save artikus11/97b59ce00cf5d875cf8b9519d9e34c72 to your computer and use it in GitHub Desktop.
Save artikus11/97b59ce00cf5d875cf8b9519d9e34c72 to your computer and use it in GitHub Desktop.
Обрезка заголовков атрибутов до нужной длины
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