{"id":377022,"date":"2023-04-20T12:30:33","date_gmt":"2023-04-20T12:30:33","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=377022"},"modified":"2026-03-11T13:41:13","modified_gmt":"2026-03-11T13:41:13","slug":"how-to-add-custom-product-data-tabs-in-woocommerce","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/","title":{"rendered":"How to add Custom Product Data tabs in WooCommerce"},"content":{"rendered":"\n<p>Today, We will learn about how to add custom data tabs in WooCommerce products Add\/ Edit. When we need more product information, this can be really helpful. <\/p>\n\n\n\n<p>In short, we can construct a custom tab to perform the desired activity. As currently WooCommerce provides the following tabs as mentioned below.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>General<\/li>\n\n\n\n<li>Inventory<\/li>\n\n\n\n<li>Shipping <\/li>\n\n\n\n<li>Linked Products<\/li>\n\n\n\n<li>Attributes<\/li>\n\n\n\n<li>Advanced<\/li>\n\n\n\n<li>Get More Options<\/li>\n<\/ul>\n\n\n\n<p>When you create a Variation product the Variation tab is also provided by WooCoomerce.<\/p>\n\n\n\n<p>If you require expert assistance or want to develop custom unique functionality, <a href=\"https:\/\/webkul.com\/hire-woocommerce-developers\/\" target=\"_blank\" rel=\"noreferrer noopener\">hire WooCommerce Developers<\/a>\u00a0for your project.<\/p>\n\n\n\n<p>However, you need to add some <a href=\"https:\/\/webkul.com\/blog\/woocommerce-custom-tab-product-edit-page\/\">custom tabs<\/a> for your custom use so you can easily achieve this by writing some lines of code as WooCommerce provides some hooks for the same. Below we will go through that step by step with code examples.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/**\n * Product Add\/Edit custom tabs\n *\n * @param array $default_tabs tabs.\n *\n * @return array $default_tabs\n *\/\nfunction wk_product_edit_tab( $default_tabs ) {\n\n\tglobal $post;\n\n\t$tabs = array(\n\t\t&#039;wk_custom_tab&#039; =&gt; array(\n\t\t\t&#039;label&#039;       =&gt; esc_html__( &#039;Custom Data&#039;, &#039;wk-webkul&#039; ),\n\t\t\t&#039;target&#039;      =&gt; &#039;wk_custom_tab&#039;, \/\/ ID of tab field\n\t\t\t&#039;priority&#039;    =&gt; 60,\n\t\t\t&#039;class&#039;       =&gt; array(),\n\t\t),\n\t);\n\n\t$default_tabs = array_merge( $default_tabs, $tabs );\n\n\treturn $default_tabs;\n}\nadd_filter( &#039;woocommerce_product_data_tabs&#039;, &#039;wk_product_edit_tab&#039;, 10, 1 );<\/pre>\n\n\n\n<p>The &#8220;woocommerce_product_data_tabs&#8221; filter is used to add a tab heading. Output below.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"883\" height=\"319\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-heading.png\" alt=\"tab-heading\" class=\"wp-image-377342\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-heading.png 883w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-heading-300x108.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-heading-250x90.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-heading-768x277.png 768w\" sizes=\"(max-width: 883px) 100vw, 883px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Now we need to add a tab field where we can add an input field as per the requirement.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/**\n * Product Add\/Edit custom tab field\n *\n * @return void\n *\/\nfunction wk_product_tab_field() {\n\tglobal $woocommerce, $post;\n\n\t?&gt;\n\t&lt;div id=&quot;wk_custom_tab&quot; class=&quot;panel woocommerce_options_panel&quot;&gt;\n\t\t&lt;p class=&quot;form-field&quot;&gt;\n\t\t\t&lt;?php $custom_data = get_post_meta( $post-&gt;ID, &#039;_wk_custom_data&#039;, true );\t?&gt;\n\t\t\t&lt;label for=&quot;wk-custom-data&quot;&gt;&lt;?php esc_html_e( &#039;Custom Data&#039;, &#039;wkc-customization&#039; ); ?&gt;&lt;\/label&gt;\n\t\t\t&lt;input type=&quot;text&quot; name=&quot;_wk_custom_data&quot; id=&quot;wk-custom-data&quot; value=&quot;&lt;?php echo $custom_data; ?&gt;&quot; \/&gt;\n\t\t&lt;\/p&gt;\n\t&lt;\/div&gt;\n\t&lt;?php\n}\nadd_action( &#039;woocommerce_product_data_panels&#039;, &#039;wk_product_tab_field&#039; );<\/pre>\n\n\n\n<p>Here is the output&#8211;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"903\" height=\"328\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-field.png\" alt=\"tab-field\" class=\"wp-image-377352\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-field.png 903w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-field-300x109.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-field-250x91.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-field-768x279.png 768w\" sizes=\"(max-width: 903px) 100vw, 903px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Now we will see how we can save this custom data with the product.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/**\n * Save custom data\n *\n * @return boolean\n *\/\nfunction wk_save_custom_tab_data( $post_id, $post, $update ) {\n\n\tglobal $post;\n\n\tif ( isset( $_POST&#091;&#039;_wk_custom_data&#039;] ) ) {\n\t\tupdate_post_meta( $post-&gt;ID, &#039;_wk_custom_data&#039;, esc_attr( $_POST&#091;&#039;_wk_custom_data&#039;] ) );\n\t}\n}\nadd_action( &#039;save_post&#039;, &#039;wk_save_custom_tab_data&#039;, 10, 3 );<\/pre>\n\n\n\n<p>Now we can use this data anywhere as per our needs. I am displaying it on the product page.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">add_action( &#039;woocommerce_after_add_to_cart_button&#039;, function () {\n\n\tglobal $post;\n\n\techo &#039;&lt;p&gt;&#039; . get_post_meta( $post-&gt;ID, &#039;_wk_custom_data&#039;, true ) . &#039;&lt;\/p&gt;&#039;;\n\n});<\/pre>\n\n\n\n<p>Output here<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"843\" height=\"426\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output.png\" alt=\"output woocomerce tab\" class=\"wp-image-377376\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output.png 843w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output-300x152.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output-250x126.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output-768x388.png 768w\" sizes=\"(max-width: 843px) 100vw, 843px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Hope you like this article, We will meet you again with a new topic. Also, visit our quality <a href=\"https:\/\/store.webkul.com\/woocommerce-plugins.html\">WooCommerce extensions<\/a><\/p>\n\n\n\n<p>Happy Coding \ud83d\ude42<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Support<\/h2>\n\n\n\n<p>For any technical assistance kindly&nbsp;<a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\" target=\"_blank\" rel=\"noreferrer noopener\">raise&nbsp;a ticket<\/a>&nbsp;or&nbsp;reach&nbsp;us by email at&nbsp;support@webkul.com. Thanks for Your Time! Have a Good Day!<\/p>\n\n\n\n<p>Also, discover various solutions to add more features and enhance your online store by visiting <a href=\"https:\/\/store.webkul.com\/woocommerce-plugins.html\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce plugins<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Today, We will learn about how to add custom data tabs in WooCommerce products Add\/ Edit. When we need more product information, this can be really helpful. In short, we can construct a custom tab to perform the desired activity. As currently WooCommerce provides the following tabs as mentioned below. When you create a Variation <a href=\"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":222,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1773,7966,1260],"tags":[3958,14206,14204],"class_list":["post-377022","post","type-post","status-publish","format-standard","hentry","category-woocommerce","category-wordpress-woocommerce","category-wordpress","tag-custom-tab","tag-woocommerce-product-tabs","tag-woocommerce-tab"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to add custom product data tabs on WooCommerce<\/title>\n<meta name=\"description\" content=\"Add custom product data tabs on product Add\/Edit in WooCommerce for your custom use so you can easily achieve it by few line of code.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to add custom product data tabs on WooCommerce\" \/>\n<meta property=\"og:description\" content=\"Add custom product data tabs on product Add\/Edit in WooCommerce for your custom use so you can easily achieve it by few line of code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-20T12:30:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-11T13:41:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-heading.png\" \/>\n<meta name=\"author\" content=\"Akhilesh Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Akhilesh Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/\"},\"author\":{\"name\":\"Akhilesh Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/f3c6faccc651392ee113400a2f5d0704\"},\"headline\":\"How to add Custom Product Data tabs in WooCommerce\",\"datePublished\":\"2023-04-20T12:30:33+00:00\",\"dateModified\":\"2026-03-11T13:41:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/\"},\"wordCount\":289,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-heading.png\",\"keywords\":[\"Custom Tab\",\"WooCommerce Product Tabs\",\"WooCommerce Tab\"],\"articleSection\":[\"WooCommerce\",\"WooCommerce\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/\",\"name\":\"How to add custom product data tabs on WooCommerce\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-heading.png\",\"datePublished\":\"2023-04-20T12:30:33+00:00\",\"dateModified\":\"2026-03-11T13:41:13+00:00\",\"description\":\"Add custom product data tabs on product Add\/Edit in WooCommerce for your custom use so you can easily achieve it by few line of code.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-heading.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-heading.png\",\"width\":883,\"height\":319,\"caption\":\"tab-heading\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to add Custom Product Data tabs in WooCommerce\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/f3c6faccc651392ee113400a2f5d0704\",\"name\":\"Akhilesh Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a488fc7f6a8850e8b8b9585469192b125f44d289c60009655cb84d15153c21ac?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a488fc7f6a8850e8b8b9585469192b125f44d289c60009655cb84d15153c21ac?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Akhilesh Kumar\"},\"description\":\"Akhilesh Kumar is a seasoned professional with 5 years of expertise in WordPress WooCommerce module development, marketplace development, and API development. With a strong foundation in e-commerce technologies, Akhilesh excels in crafting robust solutions to meet diverse business needs, driving success in online retail venture\",\"url\":\"https:\/\/webkul.com\/blog\/author\/akhileshkumar-oc765\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to add custom product data tabs on WooCommerce","description":"Add custom product data tabs on product Add\/Edit in WooCommerce for your custom use so you can easily achieve it by few line of code.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/","og_locale":"en_US","og_type":"article","og_title":"How to add custom product data tabs on WooCommerce","og_description":"Add custom product data tabs on product Add\/Edit in WooCommerce for your custom use so you can easily achieve it by few line of code.","og_url":"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-04-20T12:30:33+00:00","article_modified_time":"2026-03-11T13:41:13+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-heading.png","type":"","width":"","height":""}],"author":"Akhilesh Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Akhilesh Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/"},"author":{"name":"Akhilesh Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/f3c6faccc651392ee113400a2f5d0704"},"headline":"How to add Custom Product Data tabs in WooCommerce","datePublished":"2023-04-20T12:30:33+00:00","dateModified":"2026-03-11T13:41:13+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/"},"wordCount":289,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-heading.png","keywords":["Custom Tab","WooCommerce Product Tabs","WooCommerce Tab"],"articleSection":["WooCommerce","WooCommerce","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/","url":"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/","name":"How to add custom product data tabs on WooCommerce","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-heading.png","datePublished":"2023-04-20T12:30:33+00:00","dateModified":"2026-03-11T13:41:13+00:00","description":"Add custom product data tabs on product Add\/Edit in WooCommerce for your custom use so you can easily achieve it by few line of code.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-heading.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/tab-heading.png","width":883,"height":319,"caption":"tab-heading"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-product-data-tabs-in-woocommerce\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to add Custom Product Data tabs in WooCommerce"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/f3c6faccc651392ee113400a2f5d0704","name":"Akhilesh Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a488fc7f6a8850e8b8b9585469192b125f44d289c60009655cb84d15153c21ac?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a488fc7f6a8850e8b8b9585469192b125f44d289c60009655cb84d15153c21ac?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Akhilesh Kumar"},"description":"Akhilesh Kumar is a seasoned professional with 5 years of expertise in WordPress WooCommerce module development, marketplace development, and API development. With a strong foundation in e-commerce technologies, Akhilesh excels in crafting robust solutions to meet diverse business needs, driving success in online retail venture","url":"https:\/\/webkul.com\/blog\/author\/akhileshkumar-oc765\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/377022","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/222"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=377022"}],"version-history":[{"count":28,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/377022\/revisions"}],"predecessor-version":[{"id":530110,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/377022\/revisions\/530110"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=377022"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=377022"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=377022"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}