Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

divart_bootstrap_sandstone

// Register Style
function divart_bootstrap_sandstone() {

	wp_deregister_style( 'bootstrap-sandstone' );
	wp_register_style( 'bootstrap-sandstone', '//maxcdn.bootstrapcdn.com/bootswatch/3.3.6/sandstone/bootstrap.min.css', false, '3.2.0' );
	wp_enqueue_style( 'bootstrap-sandstone' );

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