WC_Brands::styles()publicWC 1.0

Enqueues styles.

Method of the class: WC_Brands{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Brands = new WC_Brands();
$WC_Brands->styles();

WC_Brands::styles() code WC 9.5.1

public function styles() {
	$version = Constants::get_constant( 'WC_VERSION' );
	wp_enqueue_style( 'brands-styles', WC()->plugin_url() . '/assets/css/brands.css', array(), $version );
}