Skip to content

Instantly share code, notes, and snippets.

@bloqhead
Created October 5, 2013 15:14
Show Gist options
  • Save bloqhead/6842152 to your computer and use it in GitHub Desktop.
Save bloqhead/6842152 to your computer and use it in GitHub Desktop.
Simple WordPress custom post type example.
<?php
register_post_type( 'projects',
array(
'labels' => array(
'name' => __( 'Projects' ),
'singular_name' => __( 'Project' ),
'add_new' => __( 'Add Project' ),
'add_new_item' => __( 'Add a Project' )
),
'public' => true,
'has_archive' => true,
'supports' => array (
'title',
'thumbnail',
'page-attributes',
'editor'
),
)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment