Aşağıdaki kodu temanızda bulunan function.php dosyasının içine ekleyin
// Add Font Awesome in WordPress Theme
add_action ('wp_enqueue_scripts', 'font_awesome_script');
function font_awesome_script(){
wp_enqueue_script('fontawesome-script', get_stylesheet_directory_uri() . '/js/font-awesome.js', array(), NULL, true);
// Get your own Font Awesome Kit at https://fontawesome.com/start
};