user_trailingslashit

函数


user_trailingslashit ( $string, $type_of_url = '' )
参数
  • (string)
    $string
    URL with or without a trailing slash.
    Required:
  • (string)
    $type_of_url
    Optional. The type of URL being considered (e.g. single, category, etc) for use in the filter. Default empty string.
    Required:
    Default: (empty)
返回值
  • (string) The URL with the trailing slash appended or stripped.
定义位置
  • wp-includes/link-template.php
    , line 47
引入
2.2.0
弃用

Retrieves a trailing-slashed string if the site is set for adding trailing slashes.

Conditionally adds a trailing slash if the permalink structure has a trailing
slash, strips the trailing slash if not. The string is passed through the
{@see ‘user_trailingslashit’} filter. Will remove trailing slash from string, if
site is not set to have them.

function user_trailingslashit( $string, $type_of_url = '' ) {
	global $wp_rewrite;
	if ( $wp_rewrite->use_trailing_slashes ) {
		$string = trailingslashit( $string );
	} else {
		$string = untrailingslashit( $string );
	}

	/**
	 * Filters the trailing-slashed string, depending on whether the site is set to use trailing slashes.
	 *
	 * @since 2.2.0
	 *
	 * @param string $string      URL with or without a trailing slash.
	 * @param string $type_of_url The type of URL being considered. Accepts 'single', 'single_trackback',
	 *                            'single_feed', 'single_paged', 'commentpaged', 'paged', 'home', 'feed',
	 *                            'category', 'page', 'year', 'month', 'day', 'post_type_archive'.
	 */
	return apply_filters( 'user_trailingslashit', $string, $type_of_url );
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。