| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: Frontend Dashicons |
| 4 |
* Plugin URI: https://fatpony.me/plugins/frontend-dashicons-plugin/ |
| 5 |
* Description: Load the Dashicons icon font on the front-end of your site. |
| 6 |
* Version: 1.0.3 |
| 7 |
* Author: Erica Franz |
| 8 |
* Author URI: https://fatpony.me/ |
| 9 |
* License: MIT |
| 10 |
*/ |
| 11 |
|
| 12 |
defined( 'ABSPATH' ) or die( 'Dashing through the snow, on a great white thunderbird!' ); |
| 13 |
|
| 14 |
add_action( 'wp_enqueue_scripts', 'dashicons_enqueue_frontend_dashicons' ); |
| 15 |
|
| 16 |
function dashicons_enqueue_frontend_dashicons() { |
| 17 |
|
| 18 |
wp_enqueue_style( 'dashicons' ); |
| 19 |
|
| 20 |
} |
| 21 |
|