функция
since 2.6.0
includes_url()
Проверено на WordPress 6.9, обновлено Источник: WordPress Developer Resources.
Сигнатура
includes_url( string $path = '', string|null $scheme = null ): string
Описание
Получает URL каталога includes.
Параметры
$path
string
необязательный
= ''
Путь относительно URL каталога includes.
$scheme
string|null
необязательный
= null
Схема, задающая контекст URL каталога includes. Принимает 'http', 'https' или 'relative'.
Возвращаемое значение
string
Исходный код
wp-includes/link-template.php:3621
function includes_url( $path = '', $scheme = null ) {
$url = site_url( '/' . WPINC . '/', $scheme );
if ( $path && is_string( $path ) ) {
$url .= ltrim( $path, '/' );
}
/**
* Filters the URL to the includes directory.
*
* @since 2.8.0
* @since 5.8.0 The `$scheme` parameter was added.
*
* @param string $url The complete URL to the includes directory including scheme and path.
* @param string $path Path relative to the URL to the wp-includes directory. Blank string
* if no path is specified.
* @param string|null $scheme Scheme to give the includes URL context. Accepts
* 'http', 'https', 'relative', or null. Default null.
*/
return apply_filters( 'includes_url', $url, $path, $scheme );
}
История изменений
| Версия | Описание |
|---|---|
| 2.6.0 | Introduced. |

