wpsc_enqueue_styles()WPSCache 1.0

Хуков нет.

Возвращает

null. Ничего (null).

Использование

wpsc_enqueue_styles();

Код wpsc_enqueue_styles() WPSCache 1.12.4

function wpsc_enqueue_styles() {
	wp_enqueue_style(
		'wpsc_styles',
		plugins_url( 'styling/dashboard.css', __FILE__ ),
		array(),
		filemtime( plugin_dir_path( __FILE__ ) . 'styling/dashboard.css' )
	);
}