删除字符串末尾的 /。 用法 <?php untrailingslashit( $string ); ?> 参数 $string (string) (required) 将去除末尾 / 的字符串。 Defau…
WordPress 函数:trailingslashit
在字符串末尾添加 / 添加之前会删除字符串末尾已有的 /,这样可以防止添加两个 / 用法 <?php trailingslashit( $string ) ?> 参数 $string (string) (re…
WordPress 函数:stripslashes_deep
使用 stripslashes 函数去掉 /,如果输入的是对象,使用 get_object_vars 转换成数组,然后对数组递归调用 stripslashes_deep,去掉数组中每个值的 / 。 用法 <?php…
WordPress 函数:seems_utf8
检测字符串是否是 UTF-8 编码。 用法 <?php seems_utf8( $string ); ?> 参数 (string) (required) 要检测的字符串 Default: None 返回值 (…
WordPress 函数:sanitize_user
清理用户名,去掉所有不安全的字符。 删除 HTML 标签,8进制,HTML实体,如果 $strict 参数设置为 true,将删除所有非 ASCII 字符,只保留数字,字母,_,空格,.,-,@。 用法 <?php…
WordPress 函数:sanitize_title_with_dashes
清理标题,并且将空格替换成破折号。 输出被限制为只能是字符,数字,下划线(_)和破折号,空格被替换成破折号。 用法 <?php sanitize_title_with_dashes( $title, $unused…
WordPress 函数:sanitize_title_for_query
清理标题用于数据库查询中,函数中调用 sanitize_title($title, "", "query") ,详细看 sanitize_title()。 用法 <?php sanitize_title_for_q…
WordPress 函数:sanitize_title
清理标题或者使用 $fallback 作为标题。 具体来说,HTML 和 PHP 标签都会被删除,进一步的操作是通过插件 API 实现的,如果 $title 是空的并且 $fallback_title 设置了值,那么返回…
WordPress 函数:sanitize_text_field
清理用户输入或者从数据库中获取的字符串。 检查是否合法的 UTF-8 字符,将 < 转换成 HTML 实体,去掉所有标签,删除所有换行符,占位符,以及额外的空格,去掉八位字节。 用法 <?php saniti…
WordPress 函数:sanitize_sql_orderby
保证输入的字符串是合法的 SQL Order by 语句。 支持一个或者多个字段,可以有或者没有 ASC/DESC,并且也介绍 RAND() 关键字。 用法 <?php sanitize_sql_orderby( …
WordPress 函数:sanitize_option
根据不同的选项对其值进行清理。 基本上这事一个 Switch 语句,它会根据不同的 $option 把 $value 传递给不同的函数进行处理。 用法 <?php sanitize_option( $option,…
WordPress 函数:sanitize_mime_type
清理 mine type 用法 <?php sanitize_mime_type( $mime_type ); ?> 参数 $mime_type (string) (required) Mime Type D…
WordPress 函数:sanitize_key
清理 key 字符串,keys 是用来作为内部的标示符。 只允许消息数字和字母,破折号和下划线。 用法 <?php sanitize_key( $key ); ?> 参数 $key (string) (req…
WordPress 函数:sanitize_html_class
清理 HTML Class 名,保证只包含合法的字符。 去掉非法的字符只剩下 A-Z,a-z,0-9,_,-,如果结果是空字符串,那么这个函数将返回替代的值。 用法 <?php sanitize_html_clas…
WordPress 函数:sanitize_file_name
清理文件名,并把空白替换成破折号 - 删除在一些操作系统的文件名中是非法的特色字符,并且将空格和连续的破折号转换成单个破折号,去掉文件名前后的点好,破折豪和下划线。 用法 <?php sanitize_file_n…
WordPress 函数:sanitize_email
去掉 email 中所有不允许的字符。 用法 <?php sanitize_email( $email ) ?> 参数 $email (string) (required) 要进行处理的 email Defa…
WordPress 函数:remove_accents
将所有重音字符转换为ASCII字符,如果没有重音字符的字符串,就直接返回。 用法 <?php remove_accents( $string ) ?> 参数 $string (string) (require…
WordPress 函数:popuplinks
给 HTML 中的所有的 a 标签添加 target='_blank' 和 rel='external' 属性,使链接在新窗口打开。 conment_text 使用了这个函数,目前这个函数功能很差,只是添加上面这两个属性…
WordPress 函数:make_clickable
将纯文本中的 URI 转换成 HTML 链接。 将转换 URI,www,FTP 和邮箱地址,并且修正链接中的链接。 用法 <?php make_clickable( $text ) ?> 参数 $text (…
WordPress 函数:like_escape
转义 SQL LIKE 中的特殊字符:% 和 _。 用法 <?php like_escape($text); ?> 参数 $text (string) (required) 将将以的文本。 Default: …
WordPress 函数:is_email
验证 email 地址是否合法。 用法 <?php is_email( $email ) ?> 参数 $email (string) (required) 要检查的 email 地址。 Default: No…
WordPress 函数:format_to_edit
如果参数 $richedit 为 false,format_to_post 这个函数仅仅包含了一个名为 format_to_edit 的 fliter。 如果参数 $richedit 为 true,则它将继续对内容执行 …
WordPress 函数:force_balance_tags
补全字符串中的标签。 忽略 'use_balanceTags' 选项。 用法 <?php force_balance_tags( $text ) ?> 参数 $text (string) (required)…
WordPress 函数:esc_url_raw
esc_url_raw() 函数类似与 esc_url() (实际上 esc_url_raw 函数中就使用了 esc_url ),但是不同于 esc_url(),它不会将字符转换成 HTML 实体用于显示,它的结果适用于…