No… I thought it was inbuilt. Strange that its showing on other pages, may be pulling from our cdn cache previously.
So what you’re saying is that by adding the following to an Element Header, we can incorporate it?
add_action( ‘wp_enqueue_scripts’, ‘tu_load_font_awesome’ );
/**
* Enqueue Font Awesome.
*/
function tu_load_font_awesome() {
wp_enqueue_style( ‘font-awesome’, ‘//use.fontawesome.com/releases/v5.5.0/css/all.css’, array(), ‘5.5.0’ );
}