Skip to content

Instantly share code, notes, and snippets.

@kisabelle
Created June 6, 2014 16:47
Show Gist options
  • Select an option

  • Save kisabelle/2e0491ccf0d4a13ac01e to your computer and use it in GitHub Desktop.

Select an option

Save kisabelle/2e0491ccf0d4a13ac01e to your computer and use it in GitHub Desktop.
CSS Menu Icons / Wordpress Custom Menu Icons
function add_menu_icons_styles(){
?>
<style>
#adminmenu #menu-posts-mycustomposttype div.wp-menu-image:before {
content: "\f338";
}
</style>
<?php
}
add_action( 'admin_head', 'add_menu_icons_styles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment