Skip to content

Instantly share code, notes, and snippets.

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 ryanfitton/10544553 to your computer and use it in GitHub Desktop.
Save ryanfitton/10544553 to your computer and use it in GitHub Desktop.
WordPress 3.8 Custom Post Type Register function using a Font Icon
// WordPress Custom Post Type Register for Portfolio
register_post_type('portfolio', array(
'public' => true,
'menu_icon' => 'dashicons-portfolio',
'label' => __( 'Portfolio', 'local' ),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment