Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Portfolio Item

Brandon’s Portfolio Item

// Register Custom Post Type
function portfolio_item_type() {

	$labels = array(
		'name'                => 'Portfolio Items',
		'singular_name'       => 'Portfolio Item',
		'menu_name'           => 'Portfolio Items',
		'parent_item_colon'   => 'Parent Portfolio Item:',
		'all_items'           => 'All Portfolio Items',
		'view_item'           => 'View Portfolio Item',
		'add_new_item'        => 'Add New Portfolio Item',
		'add_new'             => 'Add New Portfolio ',
		'edit_item'           => 'Edit Portfolio Item',
		'update_item'         => 'Update Portfolio Item',
		'search_items'        => 'Search Portfolio Items',
		'not_found'           => 'No Portfolio Items found',
		'not_found_in_trash'  => 'No Portfolio Items Found in Trash',
	);
	$args = array(
		'label'               => 'portfolio_item',
		'description'         => 'Portfolio Item',
		'labels'              => $labels,
		'supports'            => array( 'title', 'editor', 'thumbnail', 'custom-fields', 'post-formats', ),
		'taxonomies'          => array( 'category', 'post_tag' ),
		'hierarchical'        => false,
		'public'              => true,
		'show_ui'             => true,
		'show_in_menu'        => true,
		'show_in_nav_menus'   => true,
		'show_in_admin_bar'   => true,
		'menu_position'       => 20,
		'can_export'          => true,
		'has_archive'         => true,
		'exclude_from_search' => false,
		'publicly_queryable'  => true,
		'capability_type'     => 'page',
	);
	register_post_type( 'portfolio_item', $args );

}

// Hook into the 'init' action
add_action( 'init', 'portfolio_item_type', 0 );