Custom Product Tabs
Used for this tutorial
// 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' ), 'parent_item_colon' => __( '', 'GWP' ), 'all_items' => __( 'Product Tabs', 'GWP' ), 'view_item' => __( '', 'GWP' ), 'add_new_item' => __( 'Add Product Tab', 'GWP' ), 'add_new' => __( 'Add New', 'GWP' ), 'edit_item' => __( 'Edit Product Tab', 'GWP' ), 'update_item' => __( 'Update Product Tab', 'GWP' ), 'search_items' => __( 'Search Product Tab', 'GWP' ), 'not_found' => __( 'Not found', 'GWP' ), 'not_found_in_trash' => __( 'Not found in Trash', 'GWP' ), ); $args = array( 'label' => __( 'Product Tabs', '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', 'show_in_nav_menus' => false, 'show_in_admin_bar' => true, 'menu_position' => 5, 'menu_icon' => ' dashicons-feedback', 'can_export' => true, 'has_archive' => false, 'exclude_from_search' => true, 'publicly_queryable' => false, 'capability_type' => 'post', ); register_post_type( 'c_p_tab', $args ); } // Hook into the 'init' action add_action( 'init', 'custom_product_tabs_post_type', 0 );