{"id":94553,"date":"2018-09-12T10:08:35","date_gmt":"2018-09-12T10:08:35","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=94553"},"modified":"2021-07-16T14:26:18","modified_gmt":"2021-07-16T14:26:18","slug":"callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/","title":{"rendered":"Callback Method to Add Custom Content On Admin Core Controller RenderList In Prestashop"},"content":{"rendered":"\n<p>Many time we need to show some custom content on Admin Core Controller RenderList.<\/p>\n\n\n\n<p>To display the custom field in the admin controller render list. We need to register the&nbsp;<strong>action{ControllerName}ListingFieldsModifier<\/strong> hook.<\/p>\n\n\n\n<p>Check this link&nbsp;<a href=\"https:\/\/webkul.com\/blog\/how-to-modify-fields-list-in-prestashop\/\">https:\/\/webkul.com\/blog\/how-to-modify-fields-list-in-prestashop\/<\/a>&nbsp; to display the custom field in render list.<\/p>\n\n\n\n<p>To display own HTML content or any customize data, we can use the callback parameter of renderList. But callback searches the method in its own controller.&nbsp; We cannot add the method on admin core controller.<\/p>\n\n\n\n<p><strong>How are we going to use callback inside action{ControllerName}ListingFieldsModifier in our&nbsp;module?<\/strong><\/p>\n\n\n\n<p>So first we will understand the callback flow and how we can use it in our module.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:php\">if (isset($params['callback'])) {\n    $callback_obj= (isset($params['callback_object'])) ? $params['callback_object'] : $this-&gt;context-&gt;controller;\n    if (!preg_match('\/&lt;([a-z]+)([^&lt;]+)*(?:&gt;(.*)&lt;\\\/\\1&gt;|\\s+\\\/&gt;)\/ism', call_user_func_array(array($callback_obj, $params['callback']), array($field_value, $row)))) {\n        $field_value=call_user_func_array(array($callback_obj, $params['callback']), array($field_value, $row));\n    }\n}<\/pre>\n\n\n\n<p>Prestashop admin controller first checks the callback parameter is set or not. If set then it checks the callback_object parameter.<\/p>\n\n\n\n<p>If we set the callback_object then the callback method will be searched inside the set object. Otherwise, it will search the callback method in the admin controller.<\/p>\n\n\n\n<p><strong>So how we are going to add our callback method?<\/strong><\/p>\n\n\n\n<p>So for adding our callback method, we are having a <strong>callback_object<\/strong>&nbsp;parameter in the params object.<\/p>\n\n\n\n<p>In callback_object parameter,&nbsp;we will pass the object of the Module<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:php\">class CallbackExample extends Module\n{\n    ...\n    public function hookActionAdminOrdersListingFieldsModifier($list)\n    {\n        $optionsOrderStatus = array(1 =&gt; 'Select');\n        if (isset($list['select'])) {\n            $list['select'] .= ', o.`status` AS `type`';\n        }\n        $list['fields']['type'] = array(\n            'title' =&gt; 'Type',\n            'align' =&gt; 'text-center',\n            'filter_key' =&gt; 'o!status',\n            'callback' =&gt; 'callbackMethod',\n            'orderby' =&gt; false,\n            'type' =&gt; 'select',\n            'list' =&gt; $optionsOrderStatus,\n            'callback_object' =&gt; Module::getInstanceByName($this-&gt;name)\n        );\n    }\n    public function callbackMethod($value)\n    {\n        if ($value) {\n            return '&lt;span class=\"label label-primary\"&gt;Test Label&lt;\/span&gt;';\n        }\n    }\n}\n<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1278\" height=\"655\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/09\/Order.png\" alt=\"image\" class=\"wp-image-142319\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/09\/Order.png 1278w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/09\/Order-250x128.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/09\/Order-300x154.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/09\/Order-768x394.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/09\/Order-1200x615.png 1200w\" sizes=\"(max-width: 1278px) 100vw, 1278px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>So this is how we are going to add our field in the render list of admin controller with our callback method.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Many time we need to show some custom content on Admin Core Controller RenderList. To display the custom field in the admin controller render list. We need to register the&nbsp;action{ControllerName}ListingFieldsModifier hook. Check this link&nbsp;https:\/\/webkul.com\/blog\/how-to-modify-fields-list-in-prestashop\/&nbsp; to display the custom field in render list. To display own HTML content or any customize data, we can use the <a href=\"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":157,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-94553","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Callback Method to Add Custom Content On Admin Core Controller RenderList In Prestashop - 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\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Callback Method to Add Custom Content On Admin Core Controller RenderList In Prestashop - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Many time we need to show some custom content on Admin Core Controller RenderList. To display the custom field in the admin controller render list. We need to register the&nbsp;action{ControllerName}ListingFieldsModifier hook. Check this link&nbsp;https:\/\/webkul.com\/blog\/how-to-modify-fields-list-in-prestashop\/&nbsp; to display the custom field in render list. To display own HTML content or any customize data, we can use the [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/\" \/>\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=\"2018-09-12T10:08:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-16T14:26:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/09\/Order.png\" \/>\n<meta name=\"author\" content=\"Sanjay 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=\"Sanjay Singh\" \/>\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\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/\"},\"author\":{\"name\":\"Sanjay Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/edd854ea04c484dc61b4c592c2404241\"},\"headline\":\"Callback Method to Add Custom Content On Admin Core Controller RenderList In Prestashop\",\"datePublished\":\"2018-09-12T10:08:35+00:00\",\"dateModified\":\"2021-07-16T14:26:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/\"},\"wordCount\":246,\"commentCount\":9,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/09\/Order.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/\",\"url\":\"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/\",\"name\":\"Callback Method to Add Custom Content On Admin Core Controller RenderList In Prestashop - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/09\/Order.png\",\"datePublished\":\"2018-09-12T10:08:35+00:00\",\"dateModified\":\"2021-07-16T14:26:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/09\/Order.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/09\/Order.png\",\"width\":1278,\"height\":655},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Callback Method to Add Custom Content On Admin Core Controller RenderList In Prestashop\"}]},{\"@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\/edd854ea04c484dc61b4c592c2404241\",\"name\":\"Sanjay Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/bf62e11271d61c96204bafe9bb751ec3bce02de8a1a8e7df004725fef0335ab5?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\/bf62e11271d61c96204bafe9bb751ec3bce02de8a1a8e7df004725fef0335ab5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Sanjay Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/sanjay-singhchauhan871\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Callback Method to Add Custom Content On Admin Core Controller RenderList In Prestashop - 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\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/","og_locale":"en_US","og_type":"article","og_title":"Callback Method to Add Custom Content On Admin Core Controller RenderList In Prestashop - Webkul Blog","og_description":"Many time we need to show some custom content on Admin Core Controller RenderList. To display the custom field in the admin controller render list. We need to register the&nbsp;action{ControllerName}ListingFieldsModifier hook. Check this link&nbsp;https:\/\/webkul.com\/blog\/how-to-modify-fields-list-in-prestashop\/&nbsp; to display the custom field in render list. To display own HTML content or any customize data, we can use the [...]","og_url":"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-09-12T10:08:35+00:00","article_modified_time":"2021-07-16T14:26:18+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/09\/Order.png","type":"","width":"","height":""}],"author":"Sanjay Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Sanjay Singh","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/"},"author":{"name":"Sanjay Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/edd854ea04c484dc61b4c592c2404241"},"headline":"Callback Method to Add Custom Content On Admin Core Controller RenderList In Prestashop","datePublished":"2018-09-12T10:08:35+00:00","dateModified":"2021-07-16T14:26:18+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/"},"wordCount":246,"commentCount":9,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/09\/Order.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/","url":"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/","name":"Callback Method to Add Custom Content On Admin Core Controller RenderList In Prestashop - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/09\/Order.png","datePublished":"2018-09-12T10:08:35+00:00","dateModified":"2021-07-16T14:26:18+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/09\/Order.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/09\/Order.png","width":1278,"height":655},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/callback-method-to-add-custom-content-on-admin-core-controller-renderlist-in-prestashop\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Callback Method to Add Custom Content On Admin Core Controller RenderList In Prestashop"}]},{"@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\/edd854ea04c484dc61b4c592c2404241","name":"Sanjay Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/bf62e11271d61c96204bafe9bb751ec3bce02de8a1a8e7df004725fef0335ab5?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\/bf62e11271d61c96204bafe9bb751ec3bce02de8a1a8e7df004725fef0335ab5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Sanjay Singh"},"url":"https:\/\/webkul.com\/blog\/author\/sanjay-singhchauhan871\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/94553","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\/157"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=94553"}],"version-history":[{"count":15,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/94553\/revisions"}],"predecessor-version":[{"id":296757,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/94553\/revisions\/296757"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=94553"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=94553"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=94553"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}