Skip to content

Instantly share code, notes, and snippets.

@jwebcat
Created January 24, 2014 08:19
Show Gist options
  • Save jwebcat/8593839 to your computer and use it in GitHub Desktop.
Save jwebcat/8593839 to your computer and use it in GitHub Desktop.
Add category and tag boxes to custom post type admin edit screen WP
add_action('init', 'demo_add_default_boxes');
function demo_add_default_boxes() {
register_taxonomy_for_object_type('category', 'fonts');
register_taxonomy_for_object_type('post_tag', 'fonts');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment