{"id":84104,"date":"2017-05-19T07:01:42","date_gmt":"2017-05-19T07:01:42","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=84104"},"modified":"2024-06-27T05:24:27","modified_gmt":"2024-06-27T05:24:27","slug":"create-custom-product-attribute-set-installer-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/","title":{"rendered":"How To Create Custom Product Attribute Set From DataPatch Installer In Magento 2"},"content":{"rendered":"\n<p>How To Create <a href=\"https:\/\/store.webkul.com\/magento2-multi-vendor-custom-attributes.html\">Custom Product Attribute<\/a> Set From DataPatch Installer In Magento 2- Here I am going to explain you how to create custom product attribute set from dataPatch installer. <\/p>\n\n\n\n<p>If you want to create a custom product attribute set then create a file &#8220;AddCustomAttributeSet.php&#8221; in Vendor\\CustomModule\\Setup\\Patch\\Data and then add following code snippet.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\nnamespace Vendor\\ModuleName\\Setup\\Patch\\Data;\n\nuse Magento\\Framework\\Setup\\ModuleDataSetupInterface;\nuse Magento\\Framework\\Setup\\Patch\\DataPatchInterface;\nuse Magento\\Eav\\Model\\Entity\\Attribute\\SetFactory as AttributeSetFactory;\nuse Magento\\Catalog\\Setup\\CategorySetupFactory;\n\nclass AddCustomAttributeSet implements DataPatchInterface\n{\n    \/**\n     * @var ModuleDataSetupInterface\n     *\/\n    private $moduleDataSetup;\n\n    \/**\n     * @var AttributeSetFactory\n     *\/\n    private $attributeSetFactory;\n\n    \/**\n     * @var CategorySetupFactory\n     *\/\n    private $categorySetupFactory;\n\n    \/**\n     * @param ModuleDataSetupInterface $moduleDataSetup\n     * @param AttributeSetFactory $attributeSetFactory\n     * @param CategorySetupFactory $categorySetupFactory\n     *\/\n    public function __construct(\n        ModuleDataSetupInterface $moduleDataSetup,\n        AttributeSetFactory $attributeSetFactory,\n        CategorySetupFactory $categorySetupFactory\n    ) {\n        $this-&gt;moduleDataSetup = $moduleDataSetup;\n        $this-&gt;attributeSetFactory = $attributeSetFactory;\n        $this-&gt;categorySetupFactory = $categorySetupFactory;\n    }\n\n    \/**\n     * @inheritdoc\n     *\/\n    public function apply()\n    {\n        $setup = $this-&gt;moduleDataSetup;\n        $setup-&gt;startSetup();\n        $categorySetup = $this-&gt;categorySetupFactory-&gt;create(&#091;&#039;setup&#039; =&gt; $setup]);\n        $attributeSet = $this-&gt;attributeSetFactory-&gt;create();\n        $entityTypeId = $categorySetup-&gt;getEntityTypeId(\\Magento\\Catalog\\Model\\Product::ENTITY);\n        $attributeSetId = $categorySetup-&gt;getDefaultAttributeSetId($entityTypeId); \/\/ Default attribute set Id\n        $data = &#091;\n            &#039;attribute_set_name&#039; =&gt; &#039;Custom_Product_attribute_set&#039;, \/\/ custom attribute set name\n            &#039;entity_type_id&#039; =&gt; $entityTypeId,\n            &#039;sort_order&#039; =&gt; 50,\n        ];\n        $attributeSet-&gt;setData($data);\n        $attributeSet-&gt;validate();\n        $attributeSet-&gt;save();\n        $attributeSet-&gt;initFromSkeleton($attributeSetId)-&gt;save(); \/\/ based on default attribute set\n    }\n\n    \/**\n     * @inheritdoc\n     *\/\n    public static function getDependencies()\n    {\n        return &#091;];\n    }\n\n    \/**\n     * @inheritdoc\n     *\/\n    public function getAliases()\n    {\n        return &#091;];\n    }\n}<\/pre>\n\n\n\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-84167\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/05\/attributeset.png\" alt=\"\" width=\"1301\" height=\"653\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/05\/attributeset.png 1301w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/05\/attributeset-250x125.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/05\/attributeset-300x151.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/05\/attributeset-768x385.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/05\/attributeset-1200x602.png 1200w\" sizes=\"(max-width: 1301px) 100vw, 1301px\" loading=\"lazy\" \/>Now in this way you can create custom product attribute set.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>How To Create Custom Product Attribute Set From DataPatch Installer In Magento 2- Here I am going to explain you how to create custom product attribute set from dataPatch installer. If you want to create a custom product attribute set then create a file &#8220;AddCustomAttributeSet.php&#8221; in Vendor\\CustomModule\\Setup\\Patch\\Data and then add following code snippet. Now in <a href=\"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":143,"featured_media":80140,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[4838,13546],"class_list":["post-84104","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento2","tag-create-custom-product-attribute-set","tag-product-attribute-set"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create Custom Product Attribute Set From DataPatch Installer<\/title>\n<meta name=\"description\" content=\"Custom Product Attribute Set From DataPatch Installer In Magento 2. Here I am going to explain you how to create custom product attribute.\" \/>\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-custom-product-attribute-set-installer-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create Custom Product Attribute Set From DataPatch Installer\" \/>\n<meta property=\"og:description\" content=\"Custom Product Attribute Set From DataPatch Installer In Magento 2. Here I am going to explain you how to create custom product attribute.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-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=\"2017-05-19T07:01:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-27T05:24:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Rani Priya\" \/>\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=\"Rani Priya\" \/>\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-custom-product-attribute-set-installer-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/\"},\"author\":{\"name\":\"Rani Priya\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/41b545a754c2050d9bf1bdd689cc7433\"},\"headline\":\"How To Create Custom Product Attribute Set From DataPatch Installer In Magento 2\",\"datePublished\":\"2017-05-19T07:01:42+00:00\",\"dateModified\":\"2024-06-27T05:24:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/\"},\"wordCount\":81,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png\",\"keywords\":[\"create custom product attribute set\",\"product attribute set\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/\",\"name\":\"Create Custom Product Attribute Set From DataPatch Installer\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png\",\"datePublished\":\"2017-05-19T07:01:42+00:00\",\"dateModified\":\"2024-06-27T05:24:27+00:00\",\"description\":\"Custom Product Attribute Set From DataPatch Installer In Magento 2. Here I am going to explain you how to create custom product attribute.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Create Custom Product Attribute Set From DataPatch Installer In 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\/41b545a754c2050d9bf1bdd689cc7433\",\"name\":\"Rani Priya\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/14d4027e5c23be01f55f93fe41b566aeb282dd9382ff8f4ceb4741cd1d00d74e?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/14d4027e5c23be01f55f93fe41b566aeb282dd9382ff8f4ceb4741cd1d00d74e?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Rani Priya\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/rani-priya439\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create Custom Product Attribute Set From DataPatch Installer","description":"Custom Product Attribute Set From DataPatch Installer In Magento 2. Here I am going to explain you how to create custom product attribute.","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-custom-product-attribute-set-installer-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"Create Custom Product Attribute Set From DataPatch Installer","og_description":"Custom Product Attribute Set From DataPatch Installer In Magento 2. Here I am going to explain you how to create custom product attribute.","og_url":"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-05-19T07:01:42+00:00","article_modified_time":"2024-06-27T05:24:27+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png","type":"image\/png"}],"author":"Rani Priya","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Rani Priya","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/"},"author":{"name":"Rani Priya","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/41b545a754c2050d9bf1bdd689cc7433"},"headline":"How To Create Custom Product Attribute Set From DataPatch Installer In Magento 2","datePublished":"2017-05-19T07:01:42+00:00","dateModified":"2024-06-27T05:24:27+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/"},"wordCount":81,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png","keywords":["create custom product attribute set","product attribute set"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/","url":"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/","name":"Create Custom Product Attribute Set From DataPatch Installer","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png","datePublished":"2017-05-19T07:01:42+00:00","dateModified":"2024-06-27T05:24:27+00:00","description":"Custom Product Attribute Set From DataPatch Installer In Magento 2. Here I am going to explain you how to create custom product attribute.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-custom-product-attribute-set-installer-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Create Custom Product Attribute Set From DataPatch Installer In 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\/41b545a754c2050d9bf1bdd689cc7433","name":"Rani Priya","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/14d4027e5c23be01f55f93fe41b566aeb282dd9382ff8f4ceb4741cd1d00d74e?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/14d4027e5c23be01f55f93fe41b566aeb282dd9382ff8f4ceb4741cd1d00d74e?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Rani Priya"},"url":"https:\/\/webkul.com\/blog\/author\/rani-priya439\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/84104","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\/143"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=84104"}],"version-history":[{"count":15,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/84104\/revisions"}],"predecessor-version":[{"id":449996,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/84104\/revisions\/449996"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/80140"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=84104"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=84104"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=84104"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}