{"id":138694,"date":"2018-08-15T02:45:38","date_gmt":"2018-08-15T02:45:38","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=138694"},"modified":"2018-08-15T02:47:30","modified_gmt":"2018-08-15T02:47:30","slug":"create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/","title":{"rendered":"Create a Custom Tab on Category Edit Page in Admin Panel of Magento 2"},"content":{"rendered":"<p>Hello Everyone! Today we are going to learn that How to add a custom tab on Category Edit Page in Admin panel of Magento 2.<\/p>\n<p>Step 1:\u00a0 create<strong> category_form.xml<\/strong> at Vendor\/Module\/view\/adminhtml\/ui_component folder and add following code to it-<\/p>\n<pre class=\"brush:xml\">&lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt;\r\n&lt;form xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"urn:magento:module:Magento_Ui:etc\/ui_configuration.xsd\"&gt;\r\n    &lt;fieldset name=\"custom_category_tab\" sortOrder=\"80\"&gt;\r\n        &lt;settings&gt;\r\n            &lt;collapsible&gt;true&lt;\/collapsible&gt;\r\n            &lt;label translate=\"true\"&gt;Custom Category Tab&lt;\/label&gt;\r\n        &lt;\/settings&gt;\r\n        &lt;container name=\"custom_tab\" sortOrder=\"180\"&gt;\r\n            &lt;htmlContent name=\"html_content\"&gt;\r\n                &lt;block name=\"custom_category_block\" class=\"Vendor\\Module\\Block\\Adminhtml\\Custom\\Tab\"\/&gt;\r\n            &lt;\/htmlContent&gt;\r\n        &lt;\/container&gt;\r\n    &lt;\/fieldset&gt;\r\n&lt;\/form&gt;<\/pre>\n<p>Step 2: Create <strong>Tab.php<\/strong> at Vendor\/Module\/Block\/Adminhtml\/Custom folder and add the following code to it-<\/p>\n<pre class=\"brush:php\">&lt;?php\r\n\r\nnamespace Vendor\\Module\\Block\\Adminhtml\\Custom;\r\n\r\nclass Tab extends \\Magento\\Backend\\Block\\Template\r\n{\r\n    protected $_template = 'catalog\/category\/tab.phtml';\r\n    \r\n    public function __construct(\r\n        \\Magento\\Backend\\Block\\Template\\Context $context,\r\n        array $data = []\r\n    ) {\r\n        parent::__construct($context, $data);\r\n    }\r\n}\r\n?&gt;<\/pre>\n<p>Final Step: Create the Template file <strong>tab.phtml<\/strong> at\u00a0 Vendor\/Module\/view\/adminhtml\/templates\/catalog\/category folder, and add the content that you want to display in the custom tab.<\/p>\n<p>Once you are done, it will look like this &#8211;<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-138695\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/category-custom-tab.png\" alt=\"\" width=\"1314\" height=\"642\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/category-custom-tab.png 1314w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/category-custom-tab-250x122.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/category-custom-tab-300x147.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/category-custom-tab-768x375.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/category-custom-tab-1200x586.png 1200w\" sizes=\"(max-width: 1314px) 100vw, 1314px\" loading=\"lazy\" \/><\/p>\n<p>This is all for now. Hope this will help.<\/p>\n<p>For any doubts, you can comment below \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello Everyone! Today we are going to learn that How to add a custom tab on Category Edit Page in Admin panel of Magento 2. Step 1:\u00a0 create category_form.xml at Vendor\/Module\/view\/adminhtml\/ui_component folder and add following code to it- &lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;?&gt; &lt;form xmlns:xsi=&#8221;http:\/\/www.w3.org\/2001\/XMLSchema-instance&#8221; xsi:noNamespaceSchemaLocation=&#8221;urn:magento:module:Magento_Ui:etc\/ui_configuration.xsd&#8221;&gt; &lt;fieldset name=&#8221;custom_category_tab&#8221; sortOrder=&#8221;80&#8243;&gt; &lt;settings&gt; &lt;collapsible&gt;true&lt;\/collapsible&gt; &lt;label translate=&#8221;true&#8221;&gt;Custom Category Tab&lt;\/label&gt; &lt;\/settings&gt; &lt;container <a href=\"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":167,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[7301,2460],"class_list":["post-138694","post","type-post","status-publish","format-standard","hentry","category-magento2","tag-custom-tab-on-category-page","tag-magento-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create a Custom Tab on Category Edit Page in Admin Panel of Magento 2 - Webkul Blog<\/title>\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\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create a Custom Tab on Category Edit Page in Admin Panel of Magento 2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Hello Everyone! Today we are going to learn that How to add a custom tab on Category Edit Page in Admin panel of Magento 2. Step 1:\u00a0 create category_form.xml at Vendor\/Module\/view\/adminhtml\/ui_component folder and add following code to it- &lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;form xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:module:Magento_Ui:etc\/ui_configuration.xsd&quot;&gt; &lt;fieldset name=&quot;custom_category_tab&quot; sortOrder=&quot;80&quot;&gt; &lt;settings&gt; &lt;collapsible&gt;true&lt;\/collapsible&gt; &lt;label translate=&quot;true&quot;&gt;Custom Category Tab&lt;\/label&gt; &lt;\/settings&gt; &lt;container [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/\" \/>\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=\"2018-08-15T02:45:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-08-15T02:47:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/category-custom-tab.png\" \/>\n<meta name=\"author\" content=\"Hemant Jain\" \/>\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=\"Hemant Jain\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/\"},\"author\":{\"name\":\"Hemant Jain\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/a824ac6c5c14d32569263100b85f47c6\"},\"headline\":\"Create a Custom Tab on Category Edit Page in Admin Panel of Magento 2\",\"datePublished\":\"2018-08-15T02:45:38+00:00\",\"dateModified\":\"2018-08-15T02:47:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/\"},\"wordCount\":130,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/category-custom-tab.png\",\"keywords\":[\"Custom tab on category page\",\"Magento 2\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/\",\"name\":\"Create a Custom Tab on Category Edit Page in Admin Panel of Magento 2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/category-custom-tab.png\",\"datePublished\":\"2018-08-15T02:45:38+00:00\",\"dateModified\":\"2018-08-15T02:47:30+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/category-custom-tab.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/category-custom-tab.png\",\"width\":\"1314\",\"height\":\"642\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create a Custom Tab on Category Edit Page in Admin Panel of Magento 2\"}]},{\"@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\/a824ac6c5c14d32569263100b85f47c6\",\"name\":\"Hemant Jain\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/184358b1c25c580a3e32952605156294dedfff2b8b75bdb2a719c8e6a5d318b6?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\/184358b1c25c580a3e32952605156294dedfff2b8b75bdb2a719c8e6a5d318b6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Hemant Jain\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/hemant-jain591\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create a Custom Tab on Category Edit Page in Admin Panel of Magento 2 - Webkul Blog","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\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"Create a Custom Tab on Category Edit Page in Admin Panel of Magento 2 - Webkul Blog","og_description":"Hello Everyone! Today we are going to learn that How to add a custom tab on Category Edit Page in Admin panel of Magento 2. Step 1:\u00a0 create category_form.xml at Vendor\/Module\/view\/adminhtml\/ui_component folder and add following code to it- &lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt; &lt;form xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"urn:magento:module:Magento_Ui:etc\/ui_configuration.xsd\"&gt; &lt;fieldset name=\"custom_category_tab\" sortOrder=\"80\"&gt; &lt;settings&gt; &lt;collapsible&gt;true&lt;\/collapsible&gt; &lt;label translate=\"true\"&gt;Custom Category Tab&lt;\/label&gt; &lt;\/settings&gt; &lt;container [...]","og_url":"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-08-15T02:45:38+00:00","article_modified_time":"2018-08-15T02:47:30+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/category-custom-tab.png","type":"","width":"","height":""}],"author":"Hemant Jain","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Hemant Jain","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/"},"author":{"name":"Hemant Jain","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/a824ac6c5c14d32569263100b85f47c6"},"headline":"Create a Custom Tab on Category Edit Page in Admin Panel of Magento 2","datePublished":"2018-08-15T02:45:38+00:00","dateModified":"2018-08-15T02:47:30+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/"},"wordCount":130,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/category-custom-tab.png","keywords":["Custom tab on category page","Magento 2"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/","url":"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/","name":"Create a Custom Tab on Category Edit Page in Admin Panel of Magento 2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/category-custom-tab.png","datePublished":"2018-08-15T02:45:38+00:00","dateModified":"2018-08-15T02:47:30+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/category-custom-tab.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/category-custom-tab.png","width":"1314","height":"642"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-a-custom-tab-on-category-edit-page-in-admin-panel-of-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Create a Custom Tab on Category Edit Page in Admin Panel of Magento 2"}]},{"@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\/a824ac6c5c14d32569263100b85f47c6","name":"Hemant Jain","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/184358b1c25c580a3e32952605156294dedfff2b8b75bdb2a719c8e6a5d318b6?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\/184358b1c25c580a3e32952605156294dedfff2b8b75bdb2a719c8e6a5d318b6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Hemant Jain"},"url":"https:\/\/webkul.com\/blog\/author\/hemant-jain591\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/138694","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\/167"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=138694"}],"version-history":[{"count":7,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/138694\/revisions"}],"predecessor-version":[{"id":138702,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/138694\/revisions\/138702"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=138694"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=138694"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=138694"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}