Skip to content

Instantly share code, notes, and snippets.

View imgiseverything's full-sized avatar

Phil Thompson imgiseverything

View GitHub Profile
@imgiseverything
imgiseverything / gist:1939868
Created February 29, 2012 10:46
IMG Custom Post Types: Complex Example
if (class_exists('IMGCustomPostTypes') === true ) { // chekc for plugin activation
// 1 Initialise a new custom post type
$cpt_example = new IMGCustomPostTypes();
// 2 Add your custom fields
$cpt_example->customFields = array('example_foo', 'example_bar');
// 3 Set your naming conventions
$cpt_example->namingConventions = array(
'name' => 'example',