WP_HTML_Processor::has_class()publicWP 6.6.0

Returns if a matched tag contains the given ASCII case-insensitive class name.

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

Хуков нет.

Возвращает

true|false|null. Whether the matched tag contains the given class name, or null if not matched.

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

$WP_HTML_Processor = new WP_HTML_Processor();
$WP_HTML_Processor->has_class( $wanted_class ): ?bool;
$wanted_class(строка) (обязательный)
Look for this CSS class name, ASCII case-insensitive.

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

С версии 6.6.0 Введена.
С версии 6.6.0 Subclassed for the HTML Processor.

Код WP_HTML_Processor::has_class() WP 6.8.1

public function has_class( $wanted_class ): ?bool {
	return $this->is_virtual() ? null : parent::has_class( $wanted_class );
}