Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. register_post_type('tips', array(
  2.     'label' => __('Tips'),
  3.     'singular_label' => __('Tips'),
  4.     'public' => false,
  5.     'show_ui' => true, // UI in admin panel
  6.     'capability_type' => 'post',
  7.     'hierarchical' => false,
  8.     'rewrite' => array("slug" => "tips"), // Permalinks format
  9.     'supports' => array('title','editor', 'author', 'thumbnail', 'excerpt')
  10. ));