Skip to content

Instantly share code, notes, and snippets.

@hsquareweb
Created October 15, 2012 23:04
Show Gist options
  • Save hsquareweb/3896223 to your computer and use it in GitHub Desktop.
Save hsquareweb/3896223 to your computer and use it in GitHub Desktop.
WP: Create Simple Custom Post
//CUSTOM POSTS
function PS_Radio() {
register_post_type('PS Radio', array(
'label' => 'PS Radio',
'public' => true,
'has_archive' => true,
'menu_position' => 5,
'menu_icon' => '/wp-content/themes/sample/images/sample.png',
'supports' => array('title','editor','author','thumbnail','excerpt','trackbacks','custom-fields','comments','revisions','page-attributes','post-formats'),
'taxonomies' => array('category','post_tag')
));
}
add_action('init', 'PS_Radio');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment