WordPress 常用函数 / trailingslashit

简介

在字符串末尾添加 /

添加之前会删除字符串末尾已有的 /,这样可以防止添加两个 /

用法

<?php trailingslashit( $string ) ?>

参数

$string
(string) (required) 将添加 / 的字符串。
Default: None

返回值

(string)
已经添加 / 的字符串

实例

$path 将输出

http://blog.wpjam.com/

注解

使用 untrailingslashit() 函数来删除字符串末尾已有的 /。

修改记录

Since: 1.2.0

源文件

wp-includes/formatting.php