wordpress在postname中支持大写字母的方法

前端之家收集整理的这篇文章主要介绍了wordpress在postname中支持大写字母的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一般而言,wordpress本身会对英语用户的体验进行优化,例如默认模板的分隔符永远都是“|”,因为英文单词以空格空开,要区分两个单词不可能用“-”,因此“|”是最好的选择。同样,为了让URL更符合浏览器解析和用户的识别,wordpress默认会将标题中的英文大写字母lower到小写。

然而对于中文网站来说,这或许不是一件很好的是,如果要在URL中使用中文,那么使用大写也是常有的,这里提供一种取消wordpress自动降级字母大写的方法

PHPcode19">remove_filter( 'sanitize_title','sanitize_title_with_dashes' );add_filter( 'sanitize_title','use_capital_letter_in_slug' );function use_capital_letter_in_slug($title) { $title = strip_tags($title); // Preserve escaped octets. $title = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|','---$1---',$title); // Remove percent signs that are not part of an octet. $title = str_replace('%','',$title); // Restore octets. $title = preg_replace('|---([a-fA-F0-9][a-fA-F0-9])---|','%$1',$title);

$title = remove_accents($title); if (seems_utf8($title)) { //if (function_exists('mb_strtolower')) { // $title = mb_strtolower($title,'UTF-8'); //} $title = utf8_uri_encode($title,200); }

//$title = strtolower($title); $title = preg_replace('/&.+?;/',$title); // kill entities $title = str_replace('.','-',$title); // Keep upper-case chars too! $title = preg_replace('/[^%a-zA-Z0-9 _-]/',$title); $title = preg_replace('/\s+/',$title); $title = preg_replace('|-+|',$title); $title = trim($title,'-');

return $title;} 原文链接:https://www.f2er.com/wordpress/15306.html

猜你在找的wordpress相关文章