Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

loading custom styles for cv

// Register Style
function cv_custom_scripts_and_styles() {

	wp_register_style( 'bootstrapcss', 'get_stylesheet_directory_uri() . /css/bootstrap.min.css', false, '3.1.1' );
	wp_enqueue_style( 'bootstrapcss' );

	wp_register_style( 'bootstraptheme', 'get_stylesheet_directory_uri() . /css/bootstrap-theme.min.css', array( 'bootstrapcss' ), '3.1.1' );
	wp_enqueue_style( 'bootstraptheme' );

	wp_register_style( 'cv_custom', 'get_stylesheet_directory_uri() . /css/main.css', array( 'bootstrapcss', 'bootstraptheme' ), '1.0.0' );
	wp_enqueue_style( 'cv_custom' );

}

// Hook into the 'wp_enqueue_scripts' action
add_action( 'wp_enqueue_scripts', 'cv_custom_scripts_and_styles' );