Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tarikcayir/9139783 to your computer and use it in GitHub Desktop.
Save tarikcayir/9139783 to your computer and use it in GitHub Desktop.
<?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