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
| <?php | |
| // Enqueue Font Awesome 5 in WordPress | |
| function tme_load_font_awesome() { | |
| // You can find the current URL for the latest version here: https://fontawesome.com/start | |
| wp_enqueue_style( 'font-awesome-free', '//use.fontawesome.com/releases/v5.6.3/css/all.css' ); | |
| } | |
| add_action( 'wp_enqueue_scripts', 'tme_load_font_awesome' ); |