{"id":53936,"date":"2016-07-08T15:06:13","date_gmt":"2016-07-08T15:06:13","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=53936"},"modified":"2016-07-08T15:06:13","modified_gmt":"2016-07-08T15:06:13","slug":"display-multiple-images-ui-grid-column-magento2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/","title":{"rendered":"Display Multiple Images In UI Grid Column Magento2"},"content":{"rendered":"<p>Display Multiple Images In UI Grid Column Magento2 &#8211; sometime we need that we have to display more than one image in a UI grid column. so its a pretty easy just you have to follow some simple steps to achieve this.<\/p>\n<p>1 =&gt; Just open your ui_component xml file and write the necessary code inside your item tag in a column where you want to display multiple images.<\/p>\n<pre class=\"brush:php\">&lt;item name=\"bodyTmpl\" xsi:type=\"string\"&gt;ui\/grid\/cells\/html&lt;\/item&gt;<\/pre>\n<p>lets make it little bit easy with an example.<br \/>\nhere i have created a column, where i want to display more than one image.<\/p>\n<pre class=\"brush:php\">&lt;column name=\"image\" class=\"Webkul\\MultiImageExample\\Ui\\Component\\Listing\\Columns\\MultipleImages\"&gt;\r\n    &lt;argument name=\"data\" xsi:type=\"array\"&gt;\r\n        &lt;item name=\"config\" xsi:type=\"array\"&gt;\r\n            &lt;item name=\"component\" xsi:type=\"string\"&gt;Magento_Ui\/js\/grid\/columns\/thumbnail&lt;\/item&gt;\r\n            &lt;item name=\"altField\" xsi:type=\"string\"&gt;name&lt;\/item&gt;\r\n            &lt;item name=\"has_preview\" xsi:type=\"string\"&gt;0&lt;\/item&gt;\r\n            &lt;item name=\"sortable\" xsi:type=\"boolean\"&gt;false&lt;\/item&gt;\r\n            &lt;item name=\"bodyTmpl\" xsi:type=\"string\"&gt;ui\/grid\/cells\/html&lt;\/item&gt;\r\n            &lt;item name=\"label\" xsi:type=\"string\" translate=\"true\"&gt;Images&lt;\/item&gt;\r\n            &lt;item name=\"sortOrder\" xsi:type=\"number\"&gt;1&lt;\/item&gt;\r\n        &lt;\/item&gt;\r\n    &lt;\/argument&gt;\r\n&lt;\/column&gt;<\/pre>\n<p>you have to also define a renderer and here renderer is<\/p>\n<pre class=\"brush:php\">&lt;column name=\"image\" class=\"Webkul\\MultiImageExample\\Ui\\Component\\Listing\\Columns\\MultipleImages\"&gt;\r\n<\/pre>\n<p>2 =&gt; Now you have to write the code in renderer.<br \/>\nhere my code is<\/p>\n<pre class=\"brush:php\">&lt;?php\r\n\r\nnamespace Webkul\\MultiImageExample\\Ui\\Component\\Listing\\Columns;\r\n\r\nuse Magento\\Framework\\View\\Element\\UiComponentFactory;\r\nuse Magento\\Framework\\View\\Element\\UiComponent\\ContextInterface;\r\nuse Magento\\Store\\Model\\StoreManagerInterface;\r\n\r\nclass MultipleImages extends \\Magento\\Ui\\Component\\Listing\\Columns\\Column\r\n{\r\n    \/**\r\n     * object of store manger class\r\n     * @var storemanager\r\n     *\/\r\n    protected $_storeManager;\r\n\r\n    \/**\r\n     * @param ContextInterface      $context\r\n     * @param UiComponentFactory    $uiComponentFactory\r\n     * @param StoreManagerInterface $storemanager\r\n     * @param array                 $components\r\n     * @param array                 $data\r\n     *\/\r\n    public function __construct(\r\n        ContextInterface $context,\r\n        UiComponentFactory $uiComponentFactory,\r\n        StoreManagerInterface $storemanager,\r\n        array $components = [],\r\n        array $data = []\r\n    ) {\r\n        parent::__construct($context, $uiComponentFactory, $components, $data);\r\n        $this-&gt;_storeManager = $storemanager;\r\n    }\r\n\r\n    \/**\r\n     * Prepare Data Source\r\n     *\r\n     * @param array $dataSource\r\n     * @return array\r\n     *\/\r\n    public function prepareDataSource(array $dataSource)\r\n    {\r\n        $mediaDirectory = $this-&gt;_storeManager-&gt;getStore()-&gt;getBaseUrl(\\Magento\\Framework\\UrlInterface::URL_TYPE_MEDIA);\r\n        if (isset($dataSource['data']['items'])) {  \r\n            $fieldName = $this-&gt;getData('name');\r\n            foreach ($dataSource['data']['items'] as &amp; $item) {\r\n                $badgeArray=array();\r\n                    $imagesContainer='';\r\n                        \/\/imagesArray contain images\r\n                        $imagesArray = array(\r\n                            [\r\n                                'image_url'=&gt;'url1'\r\n                            ],\r\n                            [\r\n                                'image_url'=&gt;'url2'\r\n                            ]\r\n                            );\r\n                        foreach ($imagesArray as $image) {\r\n                            $imageUrl = $mediaDirectory.$image['image_url'];\r\n                            $imagesContainer = $imagesContainer.\"&lt;img src=\". $imageUrl .\" width='50px' height='50px' style='display:inline-block;margin:2px'\/&gt;\";\r\n                        }\r\n                    $item[$fieldName]=$imagesContainer;\r\n\r\n            }\r\n        }\r\n        return $dataSource;\r\n    }\r\n}<\/pre>\n<p>Now the images will be display at your grid column.<br \/>\nhope so it will help you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Display Multiple Images In UI Grid Column Magento2 &#8211; sometime we need that we have to display more than one image in a UI grid column. so its a pretty easy just you have to follow some simple steps to achieve this. 1 =&gt; Just open your ui_component xml file and write the necessary code <a href=\"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":92,"featured_media":46784,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[3316,3317,3318],"class_list":["post-53936","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento2","tag-display-multiple-images-in-ui-grid-column-magento-2","tag-how-to-show-image-in-magento-2-ui-grid","tag-magento-2-display-image-in-grid"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Display Multiple Images In UI Grid Column Magento2<\/title>\n<meta name=\"description\" content=\"Display Multiple Images In UI Grid Column Magento2, show image in ui grid column, display a image in magento 2 UI grid,show image in magento 2 grid\" \/>\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\/display-multiple-images-ui-grid-column-magento2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Display Multiple Images In UI Grid Column Magento2\" \/>\n<meta property=\"og:description\" content=\"Display Multiple Images In UI Grid Column Magento2, show image in ui grid column, display a image in magento 2 UI grid,show image in magento 2 grid\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-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-07-08T15:06:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.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=\"Narendra\" \/>\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=\"Narendra\" \/>\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\/display-multiple-images-ui-grid-column-magento2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/\"},\"author\":{\"name\":\"Narendra\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3c4771ea9c127b5c6e7d1ff8b58ec70a\"},\"headline\":\"Display Multiple Images In UI Grid Column Magento2\",\"datePublished\":\"2016-07-08T15:06:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/\"},\"wordCount\":142,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png\",\"keywords\":[\"display multiple images in ui grid column magento 2\",\"how to show image in magento 2 ui grid\",\"magento 2 display image in grid\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/\",\"url\":\"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/\",\"name\":\"Display Multiple Images In UI Grid Column Magento2\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png\",\"datePublished\":\"2016-07-08T15:06:13+00:00\",\"description\":\"Display Multiple Images In UI Grid Column Magento2, show image in ui grid column, display a image in magento 2 UI grid,show image in magento 2 grid\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Display Multiple Images In UI Grid Column 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\/3c4771ea9c127b5c6e7d1ff8b58ec70a\",\"name\":\"Narendra\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?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\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Narendra\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/narendra962\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Display Multiple Images In UI Grid Column Magento2","description":"Display Multiple Images In UI Grid Column Magento2, show image in ui grid column, display a image in magento 2 UI grid,show image in magento 2 grid","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\/display-multiple-images-ui-grid-column-magento2\/","og_locale":"en_US","og_type":"article","og_title":"Display Multiple Images In UI Grid Column Magento2","og_description":"Display Multiple Images In UI Grid Column Magento2, show image in ui grid column, display a image in magento 2 UI grid,show image in magento 2 grid","og_url":"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-07-08T15:06:13+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png","type":"image\/png"}],"author":"Narendra","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Narendra","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/"},"author":{"name":"Narendra","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3c4771ea9c127b5c6e7d1ff8b58ec70a"},"headline":"Display Multiple Images In UI Grid Column Magento2","datePublished":"2016-07-08T15:06:13+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/"},"wordCount":142,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png","keywords":["display multiple images in ui grid column magento 2","how to show image in magento 2 ui grid","magento 2 display image in grid"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/","url":"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/","name":"Display Multiple Images In UI Grid Column Magento2","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png","datePublished":"2016-07-08T15:06:13+00:00","description":"Display Multiple Images In UI Grid Column Magento2, show image in ui grid column, display a image in magento 2 UI grid,show image in magento 2 grid","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/display-multiple-images-ui-grid-column-magento2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Display Multiple Images In UI Grid Column 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\/3c4771ea9c127b5c6e7d1ff8b58ec70a","name":"Narendra","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?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\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Narendra"},"url":"https:\/\/webkul.com\/blog\/author\/narendra962\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/53936","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\/92"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=53936"}],"version-history":[{"count":2,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/53936\/revisions"}],"predecessor-version":[{"id":53952,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/53936\/revisions\/53952"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/46784"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=53936"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=53936"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=53936"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}