参数
$title
string-
已清理的标题。
$raw_title
string-
清理前的原始标题。
$context
string-
正在清理其标题的上下文。
更多信息
sanitize_title
是一个应用于值的过滤器,该值将被函数sanitize_title()
清理,以在URL中使用
源码
更新日志
版本 | 描述 |
---|---|
1.2.0 | 开始引入 |
使用示例
此示例将URL值更改为小写
add_filter( 'sanitize_title', 'strtolower' );
本例将加号改为破折号
function wpdocs_plus_to_dash( $title ) { return str_replace( '+', '-', $title ); } add_filter( 'sanitize_title', 'wpdocs_plus_to_dash' );
(来自Codex)
要求URL组件小写:add_filter('sanitize_title', 'strtolower');
用破折号替换加号:
function plus_to_dash($title) { return str_replace('+', '-', $title); } add_filter('sanitize_title', 'plus_to_dash');