Automattic\WooCommerce\Blocks

Assets::add_theme_admin_body_class()public staticWC 1.0

Deprecated from version 5.0.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

Add theme class to admin body.

Method of the class: Assets{}

No Hooks.

Return

Array. Modified string of CSS classnames.

Usage

$result = Assets::add_theme_admin_body_class( $classes );
$classes(array)
String with the CSS classnames.
Default: ''

Changelog

Deprecated since 5.0.0

Assets::add_theme_admin_body_class() code WC 8.7.0

public static function add_theme_admin_body_class( $classes = '' ) {
	_deprecated_function( 'Assets::add_theme_admin_body_class', '5.0.0' );
	return $classes;
}