Skip to content

Instantly share code, notes, and snippets.

@agirlandhermac
Created February 13, 2017 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agirlandhermac/a0b13528effb777ba630afaa9b9fa85d to your computer and use it in GitHub Desktop.
Save agirlandhermac/a0b13528effb777ba630afaa9b9fa85d to your computer and use it in GitHub Desktop.
Add Font Awesome Icons to Caldera Forms
//* Add Font Awesome Support
add_action( 'wp_enqueue_scripts', 'enqueue_font_awesome' );
function enqueue_font_awesome() {
wp_enqueue_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css' );
}
@agirlandhermac
Copy link
Author

I just needed to put this here for a tutorial I wrote, it's absolutely not my code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment