Advertisement
Guest User

Untitled

a guest
Mar 4th, 2011
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. //Add Products Post Type
  2. function product_register() {
  3.     $args = array(
  4.         'label' => __('Products'),
  5.         'singular_label' => __('Product'),
  6.         'public' => true,
  7.         'show_ui' => true,
  8.         'capability_type' => 'post',
  9.         'hierarchical' => false,
  10.         'rewrite' => array('slug'=>'products'),
  11.         'supports' => array('title', 'editor', 'thumbnail', 'excerpt'),
  12.         'show_in_nav_menus' => true
  13.     );
  14.  
  15.     register_post_type( 'product' , $args );
  16. }
  17. add_action('init', 'product_register');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement