Advertisement
Guest User

Untitled

a guest
Aug 10th, 2012
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.86 KB | None | 0 0
  1.  /*************************** Portfolio Post Type ***************************/
  2.        
  3.         register_post_type('portfolio', array(
  4.             'labels' => array('name' => __('Portfolio Items', 'gp_lang'), 'singular_label' => __('Portfolio Item', 'gp_lang'), 'add_new_item' => __('Add Portfolio Item', 'gp_lang'), 'edit_item' => __('Edit Portfolio Item', 'gp_lang'), 'search_items' => __( 'Search Portfolio Items', 'gp_lang')),
  5.             'public' => true,
  6.             'show_ui' => true,
  7.             '_builtin' => false,
  8.             '_edit_link' => 'post.php?post=%d',
  9.             'capability_type' => 'post',
  10.             'hierarchical' => false,
  11.             'rewrite' => array('slug' => $theme_portfolio_slug),
  12.             'menu_position' => 20,
  13.             'with_front' => true,
  14.             'supports' => array('title', 'editor', 'comments', 'author', 'custom-fields', 'thumbnail'),
  15.             'taxonomies' => array('post_tag')
  16.         ));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement