mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
5 lines
171 B
Text
5 lines
171 B
Text
add_filter( 'aws_special_chars', 'my_aws_special_chars' );
|
|
function my_aws_special_chars( $chars ) {
|
|
unset( $chars[array_search( '-',$chars )] );
|
|
return $chars;
|
|
}
|