Last active
June 21, 2022 09:14
-
-
Save runezero/f97d1840051469c0b4764bcea44a01cc to your computer and use it in GitHub Desktop.
[Font awesome enqueue] Register Font-Awesome icons to use #wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_action( 'wp_enqueue_scripts', 'my_enqueue_fontawesome' ); | |
| function my_enqueue_fontawesome(){ | |
| wp_enqueue_script( 'wp_fontawesome', 'https://kit.fontawesome.com/1339480997.js', [], '5' ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment