// Register Custom Post Type function custom_product_tabs_post_type() { $labels = array( 'name' => _x( 'Product Tabs', 'Post Type General Name', 'GWP' ), 'singular_name' => _x( 'Product Tab', 'Post Type Singular Name', 'GWP' ), 'menu_name' => __( 'product Tabs', 'GWP' ), 'name_admin_bar' => __( 'Post Type', 'GWP' ), 'archives' => __( 'Item Archives', 'GWP' ), 'attributes' => __( 'Item Attributes', 'GWP' ), 'parent_item_colon' => __( '', 'GWP' ), 'all_items' => __( 'All product Tabs', 'GWP' ), 'add_new_item' => __( 'Add Product Tab', 'GWP' ), 'add_new' => __( 'Add New', 'GWP' ), 'new_item' => __( 'New Item', 'GWP' ), 'edit_item' => __( 'Edit Product Tab', 'GWP' ), 'update_item' => __( 'Update Product Tab', 'GWP' ), 'view_item' => __( '', 'GWP' ), 'view_items' => __( 'View Items', 'GWP' ), 'search_items' => __( 'Search Product Tab', 'GWP' ), 'not_found' => __( 'Not found', 'GWP' ), 'not_found_in_trash' => __( 'Not found in Trash', 'GWP' ), 'featured_image' => __( 'Featured Image', 'GWP' ), 'set_featured_image' => __( 'Set featured image', 'GWP' ), 'remove_featured_image' => __( 'Remove featured image', 'GWP' ), 'use_featured_image' => __( 'Use as featured image', 'GWP' ), 'insert_into_item' => __( 'Insert into item', 'GWP' ), 'uploaded_to_this_item' => __( 'Uploaded to this item', 'GWP' ), 'items_list' => __( 'Items list', 'GWP' ), 'items_list_navigation' => __( 'Items list navigation', 'GWP' ), 'filter_items_list' => __( 'Filter items list', 'GWP' ), ); $args = array( 'label' => __( 'Product Tab', 'GWP' ), 'description' => __( 'Custom Product Tabs', 'GWP' ), 'labels' => $labels, 'supports' => array( 'title', 'editor' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => 'edit.php?post_type=product', 'menu_position' => 5, 'menu_icon' => 'dashicons-feedback', 'show_in_admin_bar' => true, 'show_in_nav_menus' => false, 'can_export' => true, 'has_archive' => false, 'exclude_from_search' => true, 'publicly_queryable' => false, 'capability_type' => 'post', ); register_post_type( 'c_p_tab', $args ); } add_action( 'init', 'custom_product_tabs_post_type', 0 );