transmitstudio
8/16/2018 - 6:34 PM

enqueue font awesome

BB only loads FA if you drop in a module to use one, but you can enqueue it this way too.

<?php

add_action( 'wp_enqueue_scripts', function() {
	wp_enqueue_style( 'font-awesome-5' );
} );