WP_HTML_Processor::remove_classpublicWP 6.6.0

Removes a class name from the currently matched tag.

Method of the class: WP_HTML_Processor{}

No Hooks.

Returns

true|false. Whether the class was set to be removed.

Usage

$WP_HTML_Processor = new WP_HTML_Processor();
$WP_HTML_Processor->remove_class( $class_name ): bool;
$class_name(string) (required)
The class name to remove.

Changelog

Since 6.6.0 Introduced.
Since 6.6.0 Subclassed for the HTML Processor.

WP_HTML_Processor::remove_class() code WP 7.0

public function remove_class( $class_name ): bool {
	return $this->is_virtual() ? false : parent::remove_class( $class_name );
}