register_bsf_core_styles( string $hook )

Register BSF Core styles


Description


Parameters

$hook

(string) (Required) Hook.


Source

File: admin/bsf-core/index.php

function register_bsf_core_styles( $hook ) {
	// Register Frosty script and style.
	wp_register_script( 'bsf-core-frosty', bsf_core_url( '/assets/js/frosty.js' ), array(), BSF_UPDATER_VERSION, false );
	wp_register_style( 'bsf-core-frosty-style', bsf_core_url( '/assets/css/frosty.css' ), array(), BSF_UPDATER_VERSION );
}


User Contributed Notes

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