{"id":386380,"date":"2023-06-21T11:33:17","date_gmt":"2023-06-21T11:33:17","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=386380"},"modified":"2023-06-21T11:34:39","modified_gmt":"2023-06-21T11:34:39","slug":"akeneo-side-menubar","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/","title":{"rendered":"How to add a new tab to the side menubar in Akeneo"},"content":{"rendered":"\n<p><strong>Introduction<\/strong><\/p>\n\n\n\n<p>The <a href=\"https:\/\/docs.akeneo.com\/latest\/index.html\" target=\"_blank\" rel=\"noreferrer noopener\">Akeneo PIM<\/a> (Product Information Management) system provides a customizable and extensible platform for managing product data. One of the customization options available is the ability to add a new tab to the Akeneo side menubar. In this blog post, we will walk you through the steps to create a new tab and integrate it seamlessly into the Akeneo interface.<\/p>\n\n\n\n<p><strong>Prerequisites<\/strong><\/p>\n\n\n\n<p>Before we begin, make sure you have the following prerequisites:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Access to the Akeneo project directory<\/li>\n\n\n\n<li>Familiarity with PHP and Symfony framework<\/li>\n\n\n\n<li>Basic understanding of Akeneo&#8217;s architecture<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Create a New Bundle<\/h2>\n\n\n\n<p>To start, we need to create a new bundle for our custom functionality. Follow these steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Locate the Akeneo project directory on your server.<\/li>\n\n\n\n<li>Open a terminal and navigate to the `<code><strong>src<\/strong><\/code>` directory within your Akeneo project.<\/li>\n\n\n\n<li>Create a new directory for your custom bundle. Let&#8217;s name it `<code><strong>CustomBundle<\/strong><\/code>`.<\/li>\n\n\n\n<li>Inside the `<code><strong>CustomBundle<\/strong><\/code>` directory, create the necessary files and folders according to Symfony&#8217;s bundle structure.<\/li>\n<\/ol>\n\n\n\n<p>Here&#8217;s an example of the directory structure for your custom bundle:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">src\/\n    CustomBundle\/\n        Controller\/\n            CustomController.php\n        Resources\/\n            views\/\n                index.html.twig\n        CustomBundle.php<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Configure the Bundle<\/h2>\n\n\n\n<p>Next, we need to configure the newly created bundle. Here&#8217;s what you need to do:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open the `<code><strong>CustomBundle.php<\/strong>` file located inside the `<strong>CustomBundle<\/strong><\/code>` directory.<\/li>\n\n\n\n<li>Define the namespace and extend the `<code><strong>Bundle<\/strong><\/code>` class.<\/li>\n\n\n\n<li>Implement the necessary methods required by the `<code><strong>Bundle<\/strong><\/code>` class.<\/li>\n<\/ol>\n\n\n\n<p>Here&#8217;s an example of the <code><strong>CustomBundle.php<\/strong><\/code> file:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/\/ src\/CustomBundle\/CustomBundle.php\n\nnamespace CustomBundle;\n\nuse Symfony\\Component\\HttpKernel\\Bundle\\Bundle;\n\nclass CustomBundle extends Bundle\n{\n}<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Create the Controller<\/h2>\n\n\n\n<p>In this step, we&#8217;ll create a controller that will handle the logic for the new tab. Follow these steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Inside the <code><strong>Controller<\/strong><\/code> directory of your <code><strong>CustomBundle<\/strong><\/code>, create a new file, e.g., <code><strong>CustomController.php<\/strong><\/code>.<\/li>\n\n\n\n<li>Define the namespace and extend the <code><strong>AbstractController<\/strong><\/code> class from Symfony.<\/li>\n\n\n\n<li>Implement the action method that will be responsible for rendering the content of your new tab.<\/li>\n<\/ol>\n\n\n\n<p>Here&#8217;s an example of the <code><strong>CustomController.php<\/strong><\/code> file:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/\/ src\/CustomBundle\/Controller\/CustomController.php\n\nnamespace CustomBundle\\Controller;\n\nuse Symfony\\Bundle\\FrameworkBundle\\Controller\\AbstractController;\nuse Symfony\\Component\\HttpFoundation\\Response;\n\nclass CustomController extends AbstractController\n{\n    public function index(): Response\n    {\n        return $this-&gt;render(&#039;@Custom\/views\/index.html.twig&#039;);\n    }\n}<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Create the Template<\/h2>\n\n\n\n<p>To display the content of the new tab, we&#8217;ll create a template file. Follow these steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Inside the <code><strong>Resources<\/strong><\/code> directory of your <code><strong>CustomBundle<\/strong><\/code>, create a new directory named <code><strong>views<\/strong><\/code>.<\/li>\n\n\n\n<li>Inside the <code><strong>views<\/strong><\/code> directory, create a new file, e.g., <code><strong>index.html.twig<\/strong><\/code>.<\/li>\n\n\n\n<li>Define the necessary HTML structure and content for your new tab using Twig syntax.<\/li>\n<\/ol>\n\n\n\n<p>Here&#8217;s an example of the <code><strong>index.html.twig<\/strong><\/code> file:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">{# src\/CustomBundle\/Resources\/views\/index.html.twig #}\n\n{% extends &#039;@Akeneo\/layout.html.twig&#039; %}\n\n{% block content %}\n    &lt;h1&gt;New Tab&lt;\/h1&gt;\n    &lt;p&gt;This is the content of the new tab.&lt;\/p&gt;\n    &lt;code&gt;\/\/<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Clear the Cache<\/h2>\n\n\n\n<p>To ensure that your changes take effect, we need to clear the cache. Run the following command in the terminal:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">php bin\/console cache:clear<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img decoding=\"async\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/image-18-13.png\" alt=\"Akeneo side menubar\" class=\"wp-image-387818\" width=\"725\" height=\"409\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/image-18-13.png 725w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/image-18-13-300x169.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/image-18-13-250x141.png 250w\" sizes=\"(max-width: 725px) 100vw, 725px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Now you can see Akeneo side menubar in the above image.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction The Akeneo PIM (Product Information Management) system provides a customizable and extensible platform for managing product data. One of the customization options available is the ability to add a new tab to the Akeneo side menubar. In this blog post, we will walk you through the steps to create a new tab and integrate <a href=\"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":468,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-386380","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>Akeneo side menubar<\/title>\n<meta name=\"description\" content=\"Learn how to customize your Akeneo PIM system by adding a new tab to the side menubar. Follow our step-by-step guide.\" \/>\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\/akeneo-side-menubar\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Akeneo side menubar\" \/>\n<meta property=\"og:description\" content=\"Learn how to customize your Akeneo PIM system by adding a new tab to the side menubar. Follow our step-by-step guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/\" \/>\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=\"2023-06-21T11:33:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-21T11:34:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/image-18-13.png\" \/>\n<meta name=\"author\" content=\"Jugendra Kumar\" \/>\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=\"Jugendra Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/\"},\"author\":{\"name\":\"Jugendra Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/10f52be45e5d53332f8c0740c275a835\"},\"headline\":\"How to add a new tab to the side menubar in Akeneo\",\"datePublished\":\"2023-06-21T11:33:17+00:00\",\"dateModified\":\"2023-06-21T11:34:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/\"},\"wordCount\":380,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/image-18-13.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/\",\"url\":\"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/\",\"name\":\"Akeneo side menubar\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/image-18-13.png\",\"datePublished\":\"2023-06-21T11:33:17+00:00\",\"dateModified\":\"2023-06-21T11:34:39+00:00\",\"description\":\"Learn how to customize your Akeneo PIM system by adding a new tab to the side menubar. Follow our step-by-step guide.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/image-18-13.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/image-18-13.png\",\"width\":725,\"height\":409,\"caption\":\"image-18-13\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to add a new tab to the side menubar in Akeneo\"}]},{\"@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\/10f52be45e5d53332f8c0740c275a835\",\"name\":\"Jugendra Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/41810a6b00c1ebf35929072ddefddc0c6112ffb07c64fc9515f083da8c923712?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\/41810a6b00c1ebf35929072ddefddc0c6112ffb07c64fc9515f083da8c923712?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Jugendra Kumar\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/jugendra-kumar532\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Akeneo side menubar","description":"Learn how to customize your Akeneo PIM system by adding a new tab to the side menubar. Follow our step-by-step guide.","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\/akeneo-side-menubar\/","og_locale":"en_US","og_type":"article","og_title":"Akeneo side menubar","og_description":"Learn how to customize your Akeneo PIM system by adding a new tab to the side menubar. Follow our step-by-step guide.","og_url":"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-06-21T11:33:17+00:00","article_modified_time":"2023-06-21T11:34:39+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/image-18-13.png","type":"","width":"","height":""}],"author":"Jugendra Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Jugendra Kumar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/"},"author":{"name":"Jugendra Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/10f52be45e5d53332f8c0740c275a835"},"headline":"How to add a new tab to the side menubar in Akeneo","datePublished":"2023-06-21T11:33:17+00:00","dateModified":"2023-06-21T11:34:39+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/"},"wordCount":380,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/image-18-13.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/akeneo-side-menubar\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/","url":"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/","name":"Akeneo side menubar","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/06\/image-18-13.png","datePublished":"2023-06-21T11:33:17+00:00","dateModified":"2023-06-21T11:34:39+00:00","description":"Learn how to customize your Akeneo PIM system by adding a new tab to the side menubar. Follow our step-by-step guide.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/akeneo-side-menubar\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/image-18-13.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/06\/image-18-13.png","width":725,"height":409,"caption":"image-18-13"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/akeneo-side-menubar\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to add a new tab to the side menubar in Akeneo"}]},{"@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\/10f52be45e5d53332f8c0740c275a835","name":"Jugendra Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/41810a6b00c1ebf35929072ddefddc0c6112ffb07c64fc9515f083da8c923712?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\/41810a6b00c1ebf35929072ddefddc0c6112ffb07c64fc9515f083da8c923712?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Jugendra Kumar"},"url":"https:\/\/webkul.com\/blog\/author\/jugendra-kumar532\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/386380","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\/468"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=386380"}],"version-history":[{"count":7,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/386380\/revisions"}],"predecessor-version":[{"id":387829,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/386380\/revisions\/387829"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=386380"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=386380"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=386380"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}