{"id":41100,"date":"2016-02-15T07:16:48","date_gmt":"2016-02-15T07:16:48","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=41100"},"modified":"2024-02-22T06:07:59","modified_gmt":"2024-02-22T06:07:59","slug":"how-to-get-list-of-all-stores-in-admin-form","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/","title":{"rendered":"How to get List of All Stores in Admin Form"},"content":{"rendered":"\n<p>Here we will learn, How to get list of all Stores in Admin Form in Magento 2.0.x<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"http:\/\/i.imgur.com\/ZI0XyV8.png\" alt=\"\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>You need to add the field in Form.php file.<br><strong>Open your Form.php file: Webkul\/Custom\/Block\/Adminhtml\/Customfield\/Edit\/Form.php<\/strong>;<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n    namespace Webkul\\Custom\\Block\\Adminhtml\\Customfield\\Edit;\n\n    class Form extends \\Magento\\Backend\\Block\\Widget\\Form\\Generic\n    {\n        \/**\n         * @var \\Magento\\Store\\Model\\System\\Store\n         *\/\n        protected $_systemStore;\n        \n        \/**\n         * Core registry\n         *\n         * @var \\Magento\\Framework\\Registry\n         *\/\n        protected $_coreRegistry;\n\n        \/**\n         * @param \\Magento\\Backend\\Block\\Template\\Context $context\n         * @param \\Magento\\Framework\\Registry $registry\n         * @param \\Magento\\Framework\\Data\\FormFactory $formFactory\n         * @param \\Magento\\Store\\Model\\System\\Store $systemStore\n         * @param array $data\n         *\/\n        public function __construct(\n            \\Magento\\Backend\\Block\\Template\\Context $context,\n            \\Magento\\Framework\\Registry $registry,\n            \\Magento\\Framework\\Data\\FormFactory $formFactory,\n            \\Magento\\Store\\Model\\System\\Store $systemStore,\n            array $data = &#091;]\n        ) {\n            $this-&gt;_systemStore = $systemStore;\n            $this-&gt;_coreRegistry = $registry;\n            parent::__construct($context, $registry, $formFactory, $data);\n        }\n\n        \/**\n         * Init form\n         *\n         * @return void\n         *\/\n        protected function _construct()\n        {\n            parent::_construct();\n            $this-&gt;setId(&#039;customfield_form&#039;);\n            $this-&gt;setTitle(__(&#039;Fields Information&#039;));\n        }\n\n        \/**\n         * Prepare form\n         *\n         * @return $this\n         *\/\n        protected function _prepareForm()\n        {\n\n            $form = $this-&gt;_formFactory-&gt;create(\n                &#091;&#039;data&#039; =&gt; &#091;&#039;id&#039; =&gt; &#039;edit_form&#039;, &#039;enctype&#039; =&gt; &#039;multipart\/form-data&#039;, &#039;action&#039; =&gt; $this-&gt;getData(&#039;action&#039;), &#039;method&#039; =&gt; &#039;post&#039;]]\n            );\n            $form-&gt;setHtmlIdPrefix(&#039;customfields_&#039;);\n\n            $fieldset = $form-&gt;addFieldset(\n                &#039;base_fieldset&#039;,\n                &#091;&#039;legend&#039; =&gt; __(&#039;Field Information&#039;), &#039;class&#039; =&gt; &#039;fieldset-wide&#039;]\n            );\n\n             $fieldset-&gt;addField(\n                &#039;store&#039;,\n                &#039;multiselect&#039;,\n                &#091;\n                    &#039;name&#039; =&gt; &#039;store&#091;]&#039;,\n                    &#039;label&#039; =&gt; __(&#039;Store View&#039;),\n                    &#039;title&#039; =&gt; __(&#039;Store View&#039;),\n                    &#039;required&#039; =&gt; true,\n                    &#039;values&#039; =&gt; $this-&gt;_systemStore-&gt;getStoreValuesForForm(false, true)\n                ]\n            );\n            \n            $form-&gt;setUseContainer(true);\n            $this-&gt;setForm($form);\n            return parent::_prepareForm();\n        }\n\n    }<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Here we will learn, How to get list of all Stores in Admin Form in Magento 2.0.x You need to add the field in Form.php file.Open your Form.php file: Webkul\/Custom\/Block\/Adminhtml\/Customfield\/Edit\/Form.php;<\/p>\n","protected":false},"author":69,"featured_media":39671,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[2729,2541,2728,2668,2727],"class_list":["post-41100","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento2","tag-get-store-list-in-admin-form","tag-magento-2-0","tag-magento-2-0-add-store-list-field","tag-magento-2-0-admin","tag-magento-2-0-admin-form"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to get List of All Stores in Admin Form - 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\/how-to-get-list-of-all-stores-in-admin-form\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to get List of All Stores in Admin Form - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Here we will learn, How to get list of all Stores in Admin Form in Magento 2.0.x You need to add the field in Form.php file.Open your Form.php file: Webkul\/Custom\/Block\/Adminhtml\/Customfield\/Edit\/Form.php;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/\" \/>\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-02-15T07:16:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-22T06:07:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.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=\"Mahesh 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=\"Mahesh Singh\" \/>\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\/how-to-get-list-of-all-stores-in-admin-form\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/\"},\"author\":{\"name\":\"Mahesh Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/53d3b977a0ab5adcf32aef9f97e595bd\"},\"headline\":\"How to get List of All Stores in Admin Form\",\"datePublished\":\"2016-02-15T07:16:48+00:00\",\"dateModified\":\"2024-02-22T06:07:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/\"},\"wordCount\":50,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png\",\"keywords\":[\"Get Store list in Admin Form\",\"Magento 2.0\",\"Magento 2.0 add store list field\",\"Magento 2.0 Admin\",\"Magento 2.0 Admin Form\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/\",\"name\":\"How to get List of All Stores in Admin Form - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png\",\"datePublished\":\"2016-02-15T07:16:48+00:00\",\"dateModified\":\"2024-02-22T06:07:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to get List of All Stores in Admin Form\"}]},{\"@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\/53d3b977a0ab5adcf32aef9f97e595bd\",\"name\":\"Mahesh Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f4c013ebf7008223382b8a49203e6d354677e8baff0eca373e6e4266efa762da?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\/f4c013ebf7008223382b8a49203e6d354677e8baff0eca373e6e4266efa762da?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Mahesh Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/mahesh721\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to get List of All Stores in Admin Form - 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\/how-to-get-list-of-all-stores-in-admin-form\/","og_locale":"en_US","og_type":"article","og_title":"How to get List of All Stores in Admin Form - Webkul Blog","og_description":"Here we will learn, How to get list of all Stores in Admin Form in Magento 2.0.x You need to add the field in Form.php file.Open your Form.php file: Webkul\/Custom\/Block\/Adminhtml\/Customfield\/Edit\/Form.php;","og_url":"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-02-15T07:16:48+00:00","article_modified_time":"2024-02-22T06:07:59+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png","type":"image\/png"}],"author":"Mahesh Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Mahesh Singh","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/"},"author":{"name":"Mahesh Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/53d3b977a0ab5adcf32aef9f97e595bd"},"headline":"How to get List of All Stores in Admin Form","datePublished":"2016-02-15T07:16:48+00:00","dateModified":"2024-02-22T06:07:59+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/"},"wordCount":50,"commentCount":1,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png","keywords":["Get Store list in Admin Form","Magento 2.0","Magento 2.0 add store list field","Magento 2.0 Admin","Magento 2.0 Admin Form"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/","url":"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/","name":"How to get List of All Stores in Admin Form - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png","datePublished":"2016-02-15T07:16:48+00:00","dateModified":"2024-02-22T06:07:59+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-get-list-of-all-stores-in-admin-form\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to get List of All Stores in Admin Form"}]},{"@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\/53d3b977a0ab5adcf32aef9f97e595bd","name":"Mahesh Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f4c013ebf7008223382b8a49203e6d354677e8baff0eca373e6e4266efa762da?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\/f4c013ebf7008223382b8a49203e6d354677e8baff0eca373e6e4266efa762da?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Mahesh Singh"},"url":"https:\/\/webkul.com\/blog\/author\/mahesh721\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/41100","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\/69"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=41100"}],"version-history":[{"count":5,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/41100\/revisions"}],"predecessor-version":[{"id":458022,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/41100\/revisions\/458022"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/39671"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=41100"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=41100"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=41100"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}