Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

For themestylesheet

Meeting 8
Blank Slate

// Register Style
function loadcss() {

	wp_register_style( 'themestyle', '', false, '1.0.0' );
	wp_enqueue_style( 'themestyle' );

}
add_action( 'wp_enqueue_scripts', 'loadcss' );