Skip to content

Instantly share code, notes, and snippets.

@titus-shoats
Last active November 10, 2016 00:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save titus-shoats/ae5ab89f9adefabd3d1c to your computer and use it in GitHub Desktop.
Save titus-shoats/ae5ab89f9adefabd3d1c to your computer and use it in GitHub Desktop.
wordpress custom post icon
function admin_menu_styles(){
?>
<style>
#menu-posts-products > a > div.wp-menu-image.dashicons-before:before {
content: '\f483';
}
</style>
<?php
}
add_action('admin_head','admin_menu_styles');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment