PluginProbe
Frontend Dashicons / trunk
Frontend Dashicons vtrunk
trunk 1.0.1 1.0.2 1.0.3
frontend-dashicons / frontend-dashicons.php

frontend-dashicons.php in Frontend Dashicons trunk, at frontend-dashicons.php

21 lines 546 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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