Skip to content

Instantly share code, notes, and snippets.

@msigley
Created August 7, 2014 13:59
Show Gist options
  • Save msigley/ade3c333180f60d19bea to your computer and use it in GitHub Desktop.
Save msigley/ade3c333180f60d19bea to your computer and use it in GitHub Desktop.
barebone custom post type
<?php
register_post_type( 'courses',
array(
'labels' => array(
'name' => __( 'Courses' ),
'singular_name' => __( 'Course' )
),
'public' => true,
'has_archive' => false,
'exclude_from_search' => true,
'publicly_queryable' => false,
'show_in_nav_menus' => false
)
);
add_post_type_support( 'courses' ,
array(
'title',
'editor',
'excerpt',
'revisions'
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment