Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Customers

Custom Post Type -> Customers

// Register Custom Post Type
function rodrigo3d_cpt_customers() {

	$labels = array(
		'name'                => _x( 'Customers', 'Post Type General Name', 'customers_text_domain' ),
		'singular_name'       => _x( 'Customer', 'Post Type Singular Name', 'customers_text_domain' ),
		'menu_name'           => __( 'Customer', 'customers_text_domain' ),
		'parent_item_colon'   => __( 'Parent Customer:', 'customers_text_domain' ),
		'all_items'           => __( 'All Customers', 'customers_text_domain' ),
		'view_item'           => __( 'View Customer', 'customers_text_domain' ),
		'add_new_item'        => __( 'Add New Customer', 'customers_text_domain' ),
		'add_new'             => __( 'New Customer', 'customers_text_domain' ),
		'edit_item'           => __( 'Edit Customer', 'customers_text_domain' ),
		'update_item'         => __( 'Update Customer', 'customers_text_domain' ),
		'search_items'        => __( 'Search customers', 'customers_text_domain' ),
		'not_found'           => __( 'No customers found', 'customers_text_domain' ),
		'not_found_in_trash'  => __( 'No customers found in Trash', 'customers_text_domain' ),
	);
	$args = array(
		'label'               => __( 'customers', 'customers_text_domain' ),
		'description'         => __( 'Customer information pages', 'customers_text_domain' ),
		'labels'              => $labels,
		'supports'            => array( 'title', 'editor', 'author', 'thumbnail', ),
		'taxonomies'          => array( 'category', 'post_tag' ),
		'hierarchical'        => true,
		'public'              => true,
		'show_ui'             => true,
		'show_in_menu'        => true,
		'show_in_nav_menus'   => true,
		'show_in_admin_bar'   => true,
		'menu_position'       => 25,
		'menu_icon'           => 'customers.png',
		'can_export'          => true,
		'has_archive'         => true,
		'exclude_from_search' => false,
		'publicly_queryable'  => true,
		'capability_type'     => 'post',
	);
	register_post_type( 'customers', $args );

}

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