WP_HTML_Tag_Processor::has_class( string $wanted_class ): bool|null

In this article

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

Parameters

$wanted_classstringrequired
Look for this CSS class name, ASCII case-insensitive.

Return

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

Source

public function has_class( $wanted_class ): ?bool {
	if ( self::STATE_MATCHED_TAG !== $this->parser_state ) {
		return null;
	}

	$case_insensitive = self::QUIRKS_MODE === $this->compat_mode;

	$wanted_length = strlen( $wanted_class );
	foreach ( $this->class_list() as $class_name ) {
		if (
			strlen( $class_name ) === $wanted_length &&
			0 === substr_compare( $class_name, $wanted_class, 0, strlen( $wanted_class ), $case_insensitive )
		) {
			return true;
		}
	}

	return false;
}

Changelog

VersionDescription
6.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.