Forked from halgatewood/wordpress-3.8-dashicons.php
Last active
August 29, 2015 13:56
-
-
Save tarikcayir/9139783 to your computer and use it in GitHub Desktop.
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 | |
/* | |
* WP 3.8 Add CPT Admin icon | |
*/ | |
add_action( 'admin_head', 'cpt_admin_icon' ); | |
function cpt_admin_icon(){ | |
echo ' | |
<style> | |
#adminmenu #menu-posts-project div.wp-menu-image:before { content: "\f100"; } | |
#adminmenu #menu-posts-news div.wp-menu-image:before { content: "\f116"; } | |
</style> | |
'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment