Home

Published

- 1 min read

enqueue font awesome wordpress

img of enqueue font awesome wordpress

The solution for this is noted below

enqueue font awesome wordpress

Solution

   function enqueue_load_fa() {
  wp_enqueue_style( 'load-fa', 'https://use.fontawesome.com/releases/v5.5.0/css/all.css' );
}

add_action( 'wp_enqueue_scripts', 'enqueue_load_fa');

Try other methods by searching on the site. That is if this doesn’t work