1. Enqueue Ionicons in Genesis
Add this at the end of your child-theme/functions.php
<?php //* Do NOT include the opening php tag // Enqueue Ionicons. add_action( 'wp_enqueue_scripts', 'wpize_enqueue_ionicons' ); function wpize_enqueue_ionicons() { wp_enqueue_style( 'ionicons', '//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css', array(), '1.0.0' ); }
2. Enqueue FontAwesome in Genesis
Add this at the end of your child-theme/functions.php
<?php //* Do NOT include the opening php tag // Enqueue FontAwesome. add_action( 'wp_enqueue_scripts', 'wpize_enqueue_fontawesome' ); function wpize_enqueue_fontawesome() { wp_enqueue_style( 'fontawesome', '//stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css', array(), CHILD_THEME_VERSION ); }
3. Enqueue Dashicons in Genesis
<?php //* Do NOT include the opening php tag //* Enqueue Dashicons add_action( 'wp_enqueue_scripts', 'enqueue_dashicons' ); function enqueue_dashicons() { wp_enqueue_style( 'dashicons' ); }