WP_Styles::in_default_dir()publicWP 2.8.0

Whether a handle's source is in a default directory.

Метод класса: WP_Styles{}

Хуков нет.

Возвращает

true|false. True if found, false if not.

Использование

global $wp_styles;
$wp_styles->in_default_dir( $src );
$src(строка) (обязательный)
The source of the enqueued style.

Список изменений

С версии 2.8.0 Введена.

Код WP_Styles::in_default_dir() WP 6.5.2

public function in_default_dir( $src ) {
	if ( ! $this->default_dirs ) {
		return true;
	}

	foreach ( (array) $this->default_dirs as $test ) {
		if ( str_starts_with( $src, $test ) ) {
			return true;
		}
	}
	return false;
}