Skip to content

Instantly share code, notes, and snippets.

@kimwhite
Created November 11, 2015 13:20
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 kimwhite/3d2cef5d02732926cdc5 to your computer and use it in GitHub Desktop.
Save kimwhite/3d2cef5d02732926cdc5 to your computer and use it in GitHub Desktop.
/*
* Creating a function to create our CPT
*/
function custom_post_type() {
// Set UI labels for Custom Post Type
$labels = array(
'name' => _x( 'Members', 'Post Type General Name', 'twentythirteen' ),
'singular_name' => _x( 'Member', 'Post Type Singular Name', 'twentythirteen' ),
'menu_name' => __( 'Members', 'twentythirteen' ),
'parent_item_colon' => __( 'Parent Member', 'twentythirteen' ),
'all_items' => __( 'All Members', 'twentythirteen' ),
'view_item' => __( 'View Members', 'twentythirteen' ),
'add_new_item' => __( 'Add New Member', 'twentythirteen' ),
'add_new' => __( 'Add New', 'twentythirteen' ),
'edit_item' => __( 'Edit Member', 'twentythirteen' ),
'update_item' => __( 'Update Member', 'twentythirteen' ),
'search_items' => __( 'Search Members', 'twentythirteen' ),
'not_found' => __( 'Not Found', 'twentythirteen' ),
'not_found_in_trash' => __( 'Not found in Trash', 'twentythirteen' ),
);
// Set other options for Custom Post Type
$args = array(
'label' => __( 'member', 'twentythirteen' ),
'description' => __( 'Member news and reviews', 'twentythirteen' ),
'labels' => $labels,
// Features this CPT supports in Post Editor
'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'comments', 'revisions', 'custom-fields', ),
// You can associate this CPT with a taxonomy or custom taxonomy.
'taxonomies' => array( 'genres' ),
/* A hierarchical CPT is like Pages and can have
* Parent and child items. A non-hierarchical CPT
* is like Posts.
*/
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => true,
'show_in_admin_bar' => true,
'menu_position' => 5,
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'page',
);
// Registering your Custom Post Type
register_post_type( 'members', $args );
}
/* Hook into the 'init' action so that the function
* Containing our post type registration is not
* unnecessarily executed.
*/
add_action( 'init', 'custom_post_type', 0 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment