{"id":49257,"date":"2016-05-16T17:01:20","date_gmt":"2016-05-16T17:01:20","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=49257"},"modified":"2024-03-04T05:59:39","modified_gmt":"2024-03-04T05:59:39","slug":"create-configurable-attribute-magento2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/","title":{"rendered":"Create Configurable attribute in magento2"},"content":{"rendered":"\n<p>Customizable options for a product provide a way to offer customers a selection of options with a variety of text, selection, and date input types. All product types can contain customizable options.<\/p>\n\n\n\n<p>To create a Configurable attribute in magento2&nbsp; please read the blog carefully &#8211;<\/p>\n\n\n\n<p>Here I am going to explain how to create custom attribute for configurable products. Like if you want to programatically create your own&nbsp; custom attributes for configurable products then no need to worry about this, &nbsp;you just need to follow some of the very easy steps and you can learn how to create configurable attributes just like that.<br>So in this example I am going to create a configurable attribute &#8220;Fabric Color&#8221; with Red and Blue options as an example. For creating configurable attribute please follow the steps given below-<\/p>\n\n\n\n<p>Firstly, create a Controller File app \/ code \/ {vendor} \/ {module} \/ Controller \/ Adminhtml \/ {Method} \/ {Action.php}<\/p>\n\n\n\n<p>Step 1 : Create constructor in your controller file and add the required dependency classes as mentioned below :<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/**\n * @var \\Magento\\Catalog\\Model\\ResourceModel\\Eav\\AttributeFactory\n *\/\nprotected $_eavAttributeFactory;\n\n\/**\n * @param Context                                                       $context\n * @param \\Magento\\Catalog\\Model\\ResourceModel\\Eav\\AttributeFactory     $eavAttributeFactory\n *\/\npublic function __construct(\n    Context $context,\n    \\Magento\\Catalog\\Model\\ResourceModel\\Eav\\AttributeFactory $eavAttributeFactory\n) \n{\n    $this-&gt;_eavAttributeFactory = $eavAttributeFactory;\n    parent::__construct(\n        $context\n    );\n}<\/pre>\n\n\n\n<p>Step 2 : Save the Custom attribute data in the execute method of your controller.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">$attributeData = &#091;\n    &#039;attribute_code&#039; =&gt; &#039;fabric_color&#039;,\n    &#039;is_global&#039; =&gt; 1,\n    &#039;frontend_label&#039; =&gt; &#039;Fabric Color&#039;,\n    &#039;frontend_input&#039; =&gt; &#039;select&#039;,\n    &#039;default_value_text&#039; =&gt; &#039;&#039;,\n    &#039;default_value_yesno&#039; =&gt; 0,\n    &#039;default_value_date&#039; =&gt; &#039;&#039;,\n    &#039;default_value_textarea&#039; =&gt; &#039;&#039;,\n    &#039;is_unique&#039; =&gt; 0,\n    &#039;apply_to&#039; =&gt; 0,\n    &#039;is_required&#039; =&gt; 1,\n    &#039;is_configurable&#039; =&gt; 1,\n    &#039;is_searchable&#039; =&gt; 0,\n    &#039;is_comparable&#039; =&gt; 0,\n    &#039;is_visible_in_advanced_search&#039; =&gt; 1,\n    &#039;is_used_for_price_rules&#039; =&gt; 0,\n    &#039;is_wysiwyg_enabled&#039; =&gt; 0,\n    &#039;is_html_allowed_on_front&#039; =&gt; 1,\n    &#039;is_visible_on_front&#039; =&gt; 0,\n    &#039;used_in_product_listing&#039; =&gt; 0,\n    &#039;used_for_sort_by&#039; =&gt; 0,\n    &#039;is_filterable&#039; =&gt; 0,\n    &#039;is_filterable_in_search&#039; =&gt; 0,\n    &#039;backend_type&#039; =&gt; &#039;int&#039;,\n    &#039;option&#039; =&gt; &#091;\n        &#039;order&#039; =&gt; &#091;\n            &#039;option_0&#039; =&gt; 1,\n            &#039;option_1&#039; =&gt; 2\n        ],\n        &#039;value&#039; =&gt; &#091;\n            &#039;option_0&#039; =&gt; &#091;\n                &#039;0&#039; =&gt; &#039;Admin Red&#039;,\n                &#039;1&#039; =&gt; &#039;Store Red&#039;\n            ],\n            &#039;option_1&#039; =&gt; &#091;\n                &#039;0&#039; =&gt; &#039;Admin Blue&#039;,\n                &#039;1&#039; =&gt; &#039;Store Blue&#039;\n            ]\n        ]\n    ],\n    &#039;default&#039; =&gt; &#091;\n        &#039;0&#039; =&gt; &#039;option_0&#039;\n    ]\n];\n$model = $this-&gt;_eavAttributeFactory-&gt;create();\n$model-&gt;addData($attributeData);\n$entityTypeID = $this-&gt;_objectManager-&gt;create(&#039;Magento\\Eav\\Model\\Entity&#039;)\n-&gt;setType(&#039;catalog_product&#039;)\n-&gt;getTypeId();\n$model-&gt;setEntityTypeId($entityTypeID);\n$model-&gt;save();<\/pre>\n\n\n\n<p>In the above code you may change&nbsp; the key and values according to the condition that suits best for your desired goal.<\/p>\n\n\n\n<p>For example you may change the options in the select input according to your choice.<\/p>\n\n\n\n<p>So In this way with the help of the above provided steps&nbsp; you will be able to create your own custom attribute for configurable products.<\/p>\n\n\n\n<p>Create Configurable attribute in Magento2<\/p>\n\n\n\n<p>You can also check:<\/p>\n\n\n\n<p><a href=\"https:\/\/webkul.com\/blog\/add-custom-options-product-magento-2\/\">https:\/\/webkul.com\/blog\/add-custom-options-product-magento-2\/<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/docs.magento.com\/user-guide\/v2.3\/catalog\/product-create-configurable.html\">https:\/\/docs.magento.com\/user-guide\/v2.3\/catalog\/product-create-configurable.html<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Customizable options for a product provide a way to offer customers a selection of options with a variety of text, selection, and date input types. All product types can contain customizable options. To create a Configurable attribute in magento2&nbsp; please read the blog carefully &#8211; Here I am going to explain how to create custom <a href=\"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":15,"featured_media":49189,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[3115],"class_list":["post-49257","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento2","tag-magento-configurable-product-attribute"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create Configurable attribute in magento2<\/title>\n<meta name=\"description\" content=\"Create Configurable attribute in magento2\" \/>\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-configurable-attribute-magento2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create Configurable attribute in magento2\" \/>\n<meta property=\"og:description\" content=\"Create Configurable attribute in magento2\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/\" \/>\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=\"2016-05-16T17:01:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-04T05:59:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-2.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=\"Pooja Sahu\" \/>\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=\"Pooja Sahu\" \/>\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\/create-configurable-attribute-magento2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/\"},\"author\":{\"name\":\"Pooja Sahu\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/420601cccfd5bc83506bcdd12362504b\"},\"headline\":\"Create Configurable attribute in magento2\",\"datePublished\":\"2016-05-16T17:01:20+00:00\",\"dateModified\":\"2024-03-04T05:59:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/\"},\"wordCount\":273,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-2.png\",\"keywords\":[\"magento configurable product attribute\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/\",\"name\":\"Create Configurable attribute in magento2\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-2.png\",\"datePublished\":\"2016-05-16T17:01:20+00:00\",\"dateModified\":\"2024-03-04T05:59:39+00:00\",\"description\":\"Create Configurable attribute in magento2\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-2.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-2.png\",\"width\":825,\"height\":260,\"caption\":\"How to use js in magento2\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create Configurable attribute in magento2\"}]},{\"@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\/420601cccfd5bc83506bcdd12362504b\",\"name\":\"Pooja Sahu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/87f400f19d2c602040b38dc2db6412c18f8c1ee7405e40a06bf4a21f24ea12c7?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\/87f400f19d2c602040b38dc2db6412c18f8c1ee7405e40a06bf4a21f24ea12c7?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Pooja Sahu\"},\"description\":\"Pooja Sahu is an Adobe Certified Professional &ndash; Developer in the Magento department, with expertise in HTML, CSS, JavaScript, MySQL, eCommerce platform development, and PWA. Her skills drive innovative solutions and enhance user experiences across various platforms.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/pooja\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create Configurable attribute in magento2","description":"Create Configurable attribute in magento2","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-configurable-attribute-magento2\/","og_locale":"en_US","og_type":"article","og_title":"Create Configurable attribute in magento2","og_description":"Create Configurable attribute in magento2","og_url":"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-05-16T17:01:20+00:00","article_modified_time":"2024-03-04T05:59:39+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-2.png","type":"image\/png"}],"author":"Pooja Sahu","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Pooja Sahu","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/"},"author":{"name":"Pooja Sahu","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/420601cccfd5bc83506bcdd12362504b"},"headline":"Create Configurable attribute in magento2","datePublished":"2016-05-16T17:01:20+00:00","dateModified":"2024-03-04T05:59:39+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/"},"wordCount":273,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-2.png","keywords":["magento configurable product attribute"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/","url":"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/","name":"Create Configurable attribute in magento2","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-2.png","datePublished":"2016-05-16T17:01:20+00:00","dateModified":"2024-03-04T05:59:39+00:00","description":"Create Configurable attribute in magento2","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-2.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-2.png","width":825,"height":260,"caption":"How to use js in magento2"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-configurable-attribute-magento2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Create Configurable attribute in magento2"}]},{"@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\/420601cccfd5bc83506bcdd12362504b","name":"Pooja Sahu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/87f400f19d2c602040b38dc2db6412c18f8c1ee7405e40a06bf4a21f24ea12c7?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\/87f400f19d2c602040b38dc2db6412c18f8c1ee7405e40a06bf4a21f24ea12c7?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Pooja Sahu"},"description":"Pooja Sahu is an Adobe Certified Professional &ndash; Developer in the Magento department, with expertise in HTML, CSS, JavaScript, MySQL, eCommerce platform development, and PWA. Her skills drive innovative solutions and enhance user experiences across various platforms.","url":"https:\/\/webkul.com\/blog\/author\/pooja\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/49257","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\/15"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=49257"}],"version-history":[{"count":8,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/49257\/revisions"}],"predecessor-version":[{"id":425779,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/49257\/revisions\/425779"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/49189"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=49257"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=49257"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=49257"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}