{"id":404879,"date":"2023-11-01T13:44:08","date_gmt":"2023-11-01T13:44:08","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=404879"},"modified":"2026-03-27T12:30:31","modified_gmt":"2026-03-27T12:30:31","slug":"how-to-add-custom-tab-in-woocommerce-settings","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/","title":{"rendered":"How to Add Custom Tab in WooCommerce Settings?"},"content":{"rendered":"\n<p>In this blog, we\u2019ll explore how to add a custom tab in WooCommerce settings to extend your store functionality.<\/p>\n\n\n\n<p>You\u2019ll learn a simple method to organize features better and improve your admin workflow efficiently.<\/p>\n\n\n\n<p>Adding a settings tab to WooCommerce involves creating a custom settings page in your WordPress admin panel where you can define and manage various options related to your WooCommerce store.<\/p>\n\n\n\n<p>You can use a combination of PHP and WordPress hooks to achieve this. Here are the steps to add a custom settings tab in WooCommerce:<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Create a Custom Plugin<\/strong><\/h2>\n\n\n\n<p>It&#8217;s best practice to create a custom <a href=\"https:\/\/store.webkul.com\/woocommerce-plugins.html\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce plugin<\/a> to add custom functionality to the online store.<\/p>\n\n\n\n<p>As this keeps your code separate from your theme and ensures that your custom tab remains functional even if you switch themes.<\/p>\n\n\n\n<p>a. Create a new directory in your <a href=\"https:\/\/store.webkul.com\/woocommerce-plugins\/WordPress.html\">WordPress plugins<\/a> folder, e.g., <code><strong>custom-woocommerce-settings<\/strong><\/code>.<\/p>\n\n\n\n<p>b. Inside this directory, create a PHP file, e.g., <code><strong>custom-woocommerce-settings.php<\/strong><\/code>.<\/p>\n\n\n\n<p>c. Add the following code to your <code><strong>custom-woocommerce-settings.php<\/strong><\/code> file:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;?php\n\/*\nPlugin Name: Custom WooCommerce Settings\nDescription: Add custom settings to WooCommerce.\n*\/\n\n\/\/ Add a custom tab to the WooCommerce settings\nfunction custom_woocommerce_settings_tab($settings_tabs) {\n    $settings_tabs['custom_tab'] = 'Custom Tab';\n    return $settings_tabs;\n}\nadd_filter('woocommerce_settings_tabs_array', 'custom_woocommerce_settings_tab', 50);\n\n\/\/ Display the content of the custom tab\nfunction custom_woocommerce_settings_content() {\n    \/\/ Add your custom settings content here\n    echo '&lt;h2&gt;Custom Tab Content&lt;\/h2&gt;';\n    echo '&lt;p&gt;Add your custom settings here.&lt;\/p&gt;';\n}\nadd_action('woocommerce_settings_tabs_custom_tab', 'custom_woocommerce_settings_content');\n\n\/\/ Save custom settings\nfunction save_custom_woocommerce_settings() {\n    \/\/ Add code to save your custom settings here\n}\nadd_action('woocommerce_update_options_custom_tab', 'save_custom_woocommerce_settings');\n?&gt;\n<\/pre>\n\n\n\n<p>d. Activate your custom plugin through the WordPress admin panel.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Add Custom Settings<\/strong><\/h3>\n\n\n\n<p> In the &#8216;<code><strong>custom_woocommerce_settings_content<\/strong><\/code>&#8216; function, you can add your custom settings fields using WooCommerce&#8217;s built-in functions.<\/p>\n\n\n\n<p>Such as &#8216;<code><strong>woocommerce_text_input<\/strong><\/code>&#8216;, &#8216;<code><strong>woocommerce_select<\/strong><\/code>&#8216;, etc. <\/p>\n\n\n\n<p>You&#8217;ll also need to implement the code to save these settings in the <code>save_custom_woocommerce_settings<\/code> function.<\/p>\n\n\n\n<p>After following these steps, the custom tab will be shown in the woocommerce settings. Just looking at the below image.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"494\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/how-add-custom-tab-in-woocommerce-setting-1200x494.png\" alt=\"how-add-custom-tab-in-woocommerce-setting\" class=\"wp-image-406354\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/how-add-custom-tab-in-woocommerce-setting-1200x494.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/how-add-custom-tab-in-woocommerce-setting-300x123.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/how-add-custom-tab-in-woocommerce-setting-250x103.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/how-add-custom-tab-in-woocommerce-setting-768x316.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/how-add-custom-tab-in-woocommerce-setting.png 1286w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Customize Your Tab Content<\/strong><\/h3>\n\n\n\n<p>Customize the content of your custom tab as per your requirements. You can use HTML, CSS, and PHP to display the settings or information you want.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Save your changes and go to the WooCommerce settings in your WordPress admin panel. You should see your custom tab there with the content you added.<\/p>\n\n\n\n<p>By following these steps, you can add a custom tab with settings specific to your WooCommerce store.<\/p>\n\n\n\n<p>Remember to handle the saving of settings and any additional functionality you require within your custom tab.<\/p>\n\n\n\n<p>For any technical assistance&nbsp;<a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\">please raise&nbsp;a ticket<\/a> 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>If you require expert assistance or want to develop custom unique functionality, <a href=\"https:\/\/webkul.com\/hire-woocommerce-developers\/\">Hire WooCommerce Developers<\/a>\u00a0for your project.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we\u2019ll explore how to add a custom tab in WooCommerce settings to extend your store functionality. You\u2019ll learn a simple method to organize features better and improve your admin workflow efficiently. Adding a settings tab to WooCommerce involves creating a custom settings page in your WordPress admin panel where you can define <a href=\"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":508,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1773],"tags":[14987,1468,14986],"class_list":["post-404879","post","type-post","status-publish","format-standard","hentry","category-woocommerce","tag-settings-tab","tag-woocommerce","tag-woocommerce-custom-settings-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 a Custom Tab in WooCommerce Settings?<\/title>\n<meta name=\"description\" content=\"In this dev blog article, you will learn how to add a custom tab in WooCommerce settings to manage various options related to your store\" \/>\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-tab-in-woocommerce-settings\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Add a Custom Tab in WooCommerce Settings?\" \/>\n<meta property=\"og:description\" content=\"In this dev blog article, you will learn how to add a custom tab in WooCommerce settings to manage various options related to your store\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/\" \/>\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-11-01T13:44:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-27T12:30:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/how-add-custom-tab-in-woocommerce-setting-1200x494.png\" \/>\n<meta name=\"author\" content=\"Gaurav Singh\" \/>\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=\"Gaurav Singh\" \/>\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-tab-in-woocommerce-settings\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/\"},\"author\":{\"name\":\"Gaurav Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/9e346a792c1f4cf654b8f7a8ddea4f1c\"},\"headline\":\"How to Add Custom Tab in WooCommerce Settings?\",\"datePublished\":\"2023-11-01T13:44:08+00:00\",\"dateModified\":\"2026-03-27T12:30:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/\"},\"wordCount\":378,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/how-add-custom-tab-in-woocommerce-setting-1200x494.png\",\"keywords\":[\"settings tab\",\"WooCommerce\",\"Woocommerce custom settings tab\"],\"articleSection\":[\"WooCommerce\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/\",\"name\":\"How to Add a Custom Tab in WooCommerce Settings?\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/how-add-custom-tab-in-woocommerce-setting-1200x494.png\",\"datePublished\":\"2023-11-01T13:44:08+00:00\",\"dateModified\":\"2026-03-27T12:30:31+00:00\",\"description\":\"In this dev blog article, you will learn how to add a custom tab in WooCommerce settings to manage various options related to your store\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/how-add-custom-tab-in-woocommerce-setting.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/how-add-custom-tab-in-woocommerce-setting.png\",\"width\":1286,\"height\":529,\"caption\":\"how-add-custom-tab-in-woocommerce-setting\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Add Custom Tab in WooCommerce Settings?\"}]},{\"@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\/9e346a792c1f4cf654b8f7a8ddea4f1c\",\"name\":\"Gaurav Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2be9fca71131c8014ae06e60b978ec93431494ca0641e0eb802b5fcbdc0a9bcd?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\/2be9fca71131c8014ae06e60b978ec93431494ca0641e0eb802b5fcbdc0a9bcd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Gaurav Singh\"},\"sameAs\":[\"http:\/\/webkul.com\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/gaurav-singh737\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Add a Custom Tab in WooCommerce Settings?","description":"In this dev blog article, you will learn how to add a custom tab in WooCommerce settings to manage various options related to your store","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-tab-in-woocommerce-settings\/","og_locale":"en_US","og_type":"article","og_title":"How to Add a Custom Tab in WooCommerce Settings?","og_description":"In this dev blog article, you will learn how to add a custom tab in WooCommerce settings to manage various options related to your store","og_url":"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-11-01T13:44:08+00:00","article_modified_time":"2026-03-27T12:30:31+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/how-add-custom-tab-in-woocommerce-setting-1200x494.png","type":"","width":"","height":""}],"author":"Gaurav Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Gaurav Singh","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/"},"author":{"name":"Gaurav Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/9e346a792c1f4cf654b8f7a8ddea4f1c"},"headline":"How to Add Custom Tab in WooCommerce Settings?","datePublished":"2023-11-01T13:44:08+00:00","dateModified":"2026-03-27T12:30:31+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/"},"wordCount":378,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/how-add-custom-tab-in-woocommerce-setting-1200x494.png","keywords":["settings tab","WooCommerce","Woocommerce custom settings tab"],"articleSection":["WooCommerce"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/","url":"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/","name":"How to Add a Custom Tab in WooCommerce Settings?","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/how-add-custom-tab-in-woocommerce-setting-1200x494.png","datePublished":"2023-11-01T13:44:08+00:00","dateModified":"2026-03-27T12:30:31+00:00","description":"In this dev blog article, you will learn how to add a custom tab in WooCommerce settings to manage various options related to your store","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/how-add-custom-tab-in-woocommerce-setting.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/how-add-custom-tab-in-woocommerce-setting.png","width":1286,"height":529,"caption":"how-add-custom-tab-in-woocommerce-setting"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-tab-in-woocommerce-settings\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Add Custom Tab in WooCommerce Settings?"}]},{"@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\/9e346a792c1f4cf654b8f7a8ddea4f1c","name":"Gaurav Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2be9fca71131c8014ae06e60b978ec93431494ca0641e0eb802b5fcbdc0a9bcd?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\/2be9fca71131c8014ae06e60b978ec93431494ca0641e0eb802b5fcbdc0a9bcd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Gaurav Singh"},"sameAs":["http:\/\/webkul.com"],"url":"https:\/\/webkul.com\/blog\/author\/gaurav-singh737\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/404879","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\/508"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=404879"}],"version-history":[{"count":24,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/404879\/revisions"}],"predecessor-version":[{"id":533101,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/404879\/revisions\/533101"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=404879"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=404879"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=404879"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}