Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. Font Awesome
  2.  
  3. Add the function to wp_head hook:
  4.  
  5. add_action( 'wp_enqueue_scripts', 'tu_load_font_awesome' );
  6. /**
  7. * Enqueue Font Awesome.
  8. */
  9. function tu_load_font_awesome() {
  10. wp_enqueue_style( 'font-awesome', '//use.fontawesome.com/releases/v5.5.0/css/all.css', array(), '5.5.0' );
  11. }
  12.  
  13.  
  14. <i class="fa fa-phone"></i>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement