Last active
October 11, 2023 14:29
-
-
Save daronspence/4e7c666529d3a7cc29b9 to your computer and use it in GitHub Desktop.
Font Awesome Wordpress Admin Icons
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 | |
// Loads FontAwesome & assigns dashicon prefixed classes to correspond to FontAwesome fallbacks. | |
// This allows 'dashicons-' to be used when declaring custom post type icons. | |
function font_awesome_icons(){ ?> | |
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> | |
<style> | |
.dashicons-before:before { font-family: dashicons, FontAwesome; } | |
.dashicons-suitcase:before { content: "\f0f2"; } | |
.dashicons-cutlery:before { content: "\f0f5"; } | |
</style> | |
<?php } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment