Skip to content

Instantly share code, notes, and snippets.

@jameserie
Created November 19, 2013 11:33
Show Gist options
  • Save jameserie/7544082 to your computer and use it in GitHub Desktop.
Save jameserie/7544082 to your computer and use it in GitHub Desktop.
add_action('init', 'demo_register_post_type'); function demo_register_post_type() { register_post_type('demo', array( 'labels' => array( 'name' => 'Demos', 'singular_name' => 'Demo', 'add_new' => 'Add new demo', 'edit_item' => 'Edit demo', 'new_item' => 'New demo', 'view_item' => 'View demo', 'search_items' => 'Search demos', 'not_found' => 'No demos found', 'not_found_in_trash' => 'No demos found in Trash' ), 'public' => true, 'supports' => array( 'title', 'excerpt' ), 'taxonomies' => array('category', 'post_tag') // this is IMPORTANT ));}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment