Enqueue Font Awesome Styles
// Add Font Awesome Styles (or Override Dynamik's Font Awesome styles with the latest version) | |
add_action( 'wp_enqueue_scripts', 'custom_font_awesome_styles', 5 ); | |
function custom_font_awesome_styles() { | |
wp_enqueue_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css', array(), '4.1.0' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment