Skip to content

Instantly share code, notes, and snippets.

@zanematthew
Created August 4, 2012 22:45
Show Gist options
  • Save zanematthew/3260411 to your computer and use it in GitHub Desktop.
Save zanematthew/3260411 to your computer and use it in GitHub Desktop.
Sample Post Type
<?php
$event = new Events();
$event->post_type = array(
array(
'name' => 'Race Event',
'type' => 'events',
'has_one' => 'tracks', // add support 'has_many' => 'other_cpt'
'rewrite' => array(
'slug' => 'events'
),
'supports' => array(
'title',
'editor',
'comments'
),
'taxonomies' => array(
'type',
'bmx_rs_tag',
'attendees'
)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment