{"id":87511,"date":"2017-11-15T11:31:30","date_gmt":"2017-11-15T11:31:30","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=87511"},"modified":"2024-02-21T04:45:36","modified_gmt":"2024-02-21T04:45:36","slug":"create-custom-widget-type-magento2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/","title":{"rendered":"Create Custom Widget type in Magento 2"},"content":{"rendered":"\n<p>Today i am explaining how to create custom widget type in Magento 2.<\/p>\n\n\n\n<p>To create widget firstly need to create widget.xml in app\/code\/Namespace\/Module\/etc\/ folder.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n&lt;widgets xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;..\/..\/..\/Magento\/Widget\/etc\/widget.xsd&quot;&gt;\n    &lt;widget id=&quot;wk_customwidget&quot; class=&quot;Webkul\\CustomWidget\\Block\\CustomWidget&quot;&gt;\n        &lt;label translate=&quot;true&quot;&gt;Custom Widget&lt;\/label&gt;\n        &lt;description&gt;Widget for example&lt;\/description&gt;\n        &lt;parameters&gt;\n\t\t\t&lt;parameter name=&quot;test_desc&quot; xsi:type=&quot;text&quot; required=&quot;true&quot; visible=&quot;true&quot; sort_order=&quot;0&quot; &gt;\n\t\t\t\t&lt;label translate=&quot;true&quot;&gt;Description&lt;\/label&gt;\n                &lt;description&gt;Text type option&lt;\/description&gt;\n\t\t\t&lt;\/parameter&gt;\n            &lt;parameter name=&quot;test_select&quot; xsi:type=&quot;select&quot; required=&quot;true&quot; source_model=&quot;Webkul\\CustomWidget\\Model\\Config\\Source\\Select&quot; visible=&quot;true&quot; sort_order=&quot;8&quot; &gt;\n\t\t\t\t&lt;label translate=&quot;true&quot;&gt;Select option&lt;\/label&gt;\n                &lt;description&gt;Select type option&lt;\/description&gt;\n\t\t\t&lt;\/parameter&gt;\n        &lt;\/parameters&gt;\n    &lt;\/widget&gt;\n&lt;\/widgets&gt;<\/pre>\n\n\n\n<p>Here, <strong>Widget id:<\/strong> wk_customwidget, you can defined as per your choice.<\/p>\n\n\n\n<p><strong>Class attribute:<\/strong> in this you need to add a block class&nbsp;which uses in your widget.<\/p>\n\n\n\n<p><strong>label and description<\/strong> tags for the widget explanation.<\/p>\n\n\n\n<p>In the parameter tag we added 2 type of fields:<\/p>\n\n\n\n<p>1: <strong>text type<\/strong>, you can add text values.<\/p>\n\n\n\n<p>2:<strong> select type<\/strong>: to select option values, for this you need to define values in model.<\/p>\n\n\n\n<p>Model file for the select options at path: Webkul\\CustomWidget\\Model\\Config\\Source\\Select.php<\/p>\n\n\n\n<p>will have code like:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\nnamespace Webkul\\CustomWidget\\Model\\Config\\Source;\n\nclass Select implements \\Magento\\Framework\\Option\\ArrayInterface\n{\n    public function toOptionArray()\n    {\n        return &#091;\n            &#091;&#039;value&#039; =&gt; &#039;yes&#039;, &#039;label&#039; =&gt; __(&#039;Yes&#039;)],\n            &#091;&#039;value&#039; =&gt; &#039;no&#039;, &#039;label&#039; =&gt; __(&#039;No&#039;)]\n        ];\n    }\n}<\/pre>\n\n\n\n<p>By this code, there are two option will appear with Yes and No values.<\/p>\n\n\n\n<p>Now Create block which is defined in widget.xml<\/p>\n\n\n\n<p>Block file at path\u00a0Webkul\\CustomWidget\\Block\\CustomWidget.php<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\nnamespace Webkul\\CustomWidget\\Block;\n\nuse Magento\\Framework\\View\\Element\\Template;\nuse Magento\\Framework\\App\\Config\\ScopeConfigInterface;\n\nclass CustomWidget extends \\Magento\\Framework\\View\\Element\\Template implements \\Magento\\Widget\\Block\\BlockInterface\n{\n\n    \/**\n     * construct description\n     * @param MagentoFrameworkViewElementTemplateContext $context\n     * $data&#091;]\n     *\/\n    public function __construct(\n        \\Magento\\Framework\\View\\Element\\Template\\Context $context,\n        array $data = &#091;]\n    ) {\n        parent::__construct($context, $data);\n    }\n\n    \/**\n     * construct function\n     *\/\n    protected function _construct()\n    {\n        parent::_construct();\n        $this-&gt;setTemplate(&#039;custom_widget.phtml&#039;);\n    }\n\n    public function getDescription()\n    {\n        $desc = $this-&gt;getData(&#039;test_desc&#039;);\n        \/\/it will return your description which is added in your widget\n    }\n\n    public function getSelectValue()\n    {\n        return $this-&gt;getData(&#039;test_select&#039;);\n        \/\/will return select option value\n    }\n}<\/pre>\n\n\n\n<p>Here, you can set your custom template in $this-&gt;setTemplate() function.<\/p>\n\n\n\n<p>In block i created two functions to get values which i added at time of adding widget.<\/p>\n\n\n\n<p>After these files, you will get a new widget type with custom fields.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1024\" height=\"581\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget.png\" alt=\"\" class=\"wp-image-87527\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget.png 1024w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget-250x142.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget-300x170.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget-768x436.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1145\" height=\"674\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget_option.png\" alt=\"\" class=\"wp-image-87528\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget_option.png 1145w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget_option-250x147.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget_option-300x177.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget_option-768x452.png 768w\" sizes=\"(max-width: 1145px) 100vw, 1145px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>You can add this widget on any page, and use widget&#8217;s data through your block.<\/p>\n\n\n\n<p>I hope this blog will help you with Create Custom Widget type in Magento 2. You may also check our wide range of best&nbsp;<a href=\"https:\/\/store.webkul.com\/Magento-2.html\" target=\"_blank\" rel=\"noreferrer noopener\">Magento 2 Extensions<\/a>.<\/p>\n\n\n\n<p>Please reach out to our team via a&nbsp;<a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\" target=\"_blank\" rel=\"noreferrer noopener\">support ticket<\/a>&nbsp;if you have any queries.<\/p>\n\n\n\n<p>Try this and if you have any queries then just comment below \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Today i am explaining how to create custom widget type in Magento 2. To create widget firstly need to create widget.xml in app\/code\/Namespace\/Module\/etc\/ folder. Here, Widget id: wk_customwidget, you can defined as per your choice. Class attribute: in this you need to add a block class&nbsp;which uses in your widget. label and description tags for <a href=\"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":68,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[2070,4829],"class_list":["post-87511","post","type-post","status-publish","format-standard","hentry","category-magento2","tag-magento2","tag-widget"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create Custom Widget type in Magento 2<\/title>\n<meta name=\"description\" content=\"In this blog we will discuss create custom widget type in Magento 2\" \/>\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-widget-type-magento2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create Custom Widget type in Magento 2\" \/>\n<meta property=\"og:description\" content=\"In this blog we will discuss create custom widget type in Magento 2\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-custom-widget-type-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=\"2017-11-15T11:31:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-21T04:45:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget.png\" \/>\n<meta name=\"author\" content=\"Bulbul\" \/>\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=\"Bulbul\" \/>\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-custom-widget-type-magento2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/\"},\"author\":{\"name\":\"Bulbul\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/c9c6288b3950490ffdb37cb2a526996e\"},\"headline\":\"Create Custom Widget type in Magento 2\",\"datePublished\":\"2017-11-15T11:31:30+00:00\",\"dateModified\":\"2024-02-21T04:45:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/\"},\"wordCount\":265,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget.png\",\"keywords\":[\"Magento2\",\"widget\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/\",\"name\":\"Create Custom Widget type in Magento 2\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget.png\",\"datePublished\":\"2017-11-15T11:31:30+00:00\",\"dateModified\":\"2024-02-21T04:45:36+00:00\",\"description\":\"In this blog we will discuss create custom widget type in Magento 2\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget.png\",\"width\":1024,\"height\":581},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create Custom Widget type 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\/c9c6288b3950490ffdb37cb2a526996e\",\"name\":\"Bulbul\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/37ea7175f5ae6557d01bb38e147f6a02a540714ecdb71770d8ec554d4d34c23f?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\/37ea7175f5ae6557d01bb38e147f6a02a540714ecdb71770d8ec554d4d34c23f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Bulbul\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/bulbul896\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create Custom Widget type in Magento 2","description":"In this blog we will discuss create custom widget type in Magento 2","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-widget-type-magento2\/","og_locale":"en_US","og_type":"article","og_title":"Create Custom Widget type in Magento 2","og_description":"In this blog we will discuss create custom widget type in Magento 2","og_url":"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-11-15T11:31:30+00:00","article_modified_time":"2024-02-21T04:45:36+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget.png","type":"","width":"","height":""}],"author":"Bulbul","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Bulbul","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/"},"author":{"name":"Bulbul","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/c9c6288b3950490ffdb37cb2a526996e"},"headline":"Create Custom Widget type in Magento 2","datePublished":"2017-11-15T11:31:30+00:00","dateModified":"2024-02-21T04:45:36+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/"},"wordCount":265,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget.png","keywords":["Magento2","widget"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/","url":"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/","name":"Create Custom Widget type in Magento 2","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget.png","datePublished":"2017-11-15T11:31:30+00:00","dateModified":"2024-02-21T04:45:36+00:00","description":"In this blog we will discuss create custom widget type in Magento 2","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/06\/widget.png","width":1024,"height":581},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-custom-widget-type-magento2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Create Custom Widget type 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\/c9c6288b3950490ffdb37cb2a526996e","name":"Bulbul","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/37ea7175f5ae6557d01bb38e147f6a02a540714ecdb71770d8ec554d4d34c23f?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\/37ea7175f5ae6557d01bb38e147f6a02a540714ecdb71770d8ec554d4d34c23f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Bulbul"},"url":"https:\/\/webkul.com\/blog\/author\/bulbul896\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/87511","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\/68"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=87511"}],"version-history":[{"count":16,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/87511\/revisions"}],"predecessor-version":[{"id":423218,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/87511\/revisions\/423218"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=87511"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=87511"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=87511"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}