{"id":134685,"date":"2018-07-21T11:56:57","date_gmt":"2018-07-21T11:56:57","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=134685"},"modified":"2024-03-26T06:32:17","modified_gmt":"2024-03-26T06:32:17","slug":"how-to-add-custom-link-in-navigation-menu-in-magento2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/","title":{"rendered":"How to add custom link in navigation menu in Magento2"},"content":{"rendered":"\n<p>Sometimes we need to add some important links in navigation menu except category by which <a href=\"https:\/\/store.webkul.com\/Magento-customer-partner.html\">customer<\/a> easily find that links and they can reach our information.<\/p>\n\n\n\n<p>We can achieve this goal by overwrite default magento file\u00a0vendor\/magento\/module-theme\/view\/frontend\/templates\/html\/topmenu.phtml. But this is not good practice by making changes in default Magento functionality.<\/p>\n\n\n\n<p>In Magento 2 added new feature is <a href=\"https:\/\/webkul.com\/blog\/magento2-use-plugins\/\"><strong>Plugin.<\/strong><\/a>&nbsp;We will use plugin to implement this.<\/p>\n\n\n\n<p>I have assumed that we have already installed module.In this blog we will add only files which related to this task.<\/p>\n\n\n\n<p>1 &#8211; We have to create app\/code\/Test\/TestCustomMenu\/etc\/di.xml file where we will define our plugin.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n&lt;!--\n\/**\n* @category   Webkul\n* @package    Test_TestCustomMenu\n* @author     Webkul Software Private Limited\n* @license    https:\/\/store.webkul.com\/license.html\n*\/\n--&gt;\n&lt;config xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:ObjectManager\/etc\/config.xsd&quot;&gt;\n    &lt;!-- Add Plugin for add custom link in navigation --&gt;\n    &lt;type name=&quot;Magento\\Theme\\Block\\Html\\Topmenu&quot;&gt;\n        &lt;plugin name=&quot;add_menu_item_plugin&quot; type=&quot;Test\\TestCustomMenu\\Plugin\\Topmenu&quot; sortOrder=&quot;10&quot; disabled=&quot;false&quot;\/&gt;\n    &lt;\/type&gt;\n&lt;\/config&gt;<\/pre>\n\n\n\n<p>2 &#8211; Now we have to create app\/code\/Test\/TestCustomMenu\/Plugin\/Topmenu.php . In this file we will modify default getHtml function. This function return list html which is call in navigation menu.<\/p>\n\n\n\n<p>We added after plugin of getHtml function for adding our custom link at the end of pre-generated list of html.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\/**\n* @category   Webkul\n* @package    Test_TestCustomMenu\n* @author     Webkul Software Private Limited\n* @license    https:\/\/store.webkul.com\/license.html\n*\/\n\nnamespace Test\\TestCustomMenu\\Plugin;\n\nclass Topmenu\n{\n    \/**\n    * @param Context                                   $context\n    * @param array                                     $data\n    *\/\n    public function __construct(\n        \\Magento\\Customer\\Model\\Session $session\n    ) {\n        $this-&gt;Session = $session;\n    }\n\n\n    public function afterGetHtml(\\Magento\\Theme\\Block\\Html\\Topmenu $topmenu, $html)\n    {\n        $swappartyUrl = $topmenu-&gt;getUrl(&#039;testCustomMenu\/custommenu&#039;);\/\/here you can set link\n        $magentoCurrentUrl = $topmenu-&gt;getUrl(&#039;*\/*\/*&#039;, &#091;&#039;_current&#039; =&gt; true, &#039;_use_rewrite&#039; =&gt; true]);\n        if (strpos($magentoCurrentUrl,&#039;testCustomMenu\/custommenu&#039;) !== false) {\n            $html .= &quot;&lt;li class=\\&quot;level0 nav-5 active level-top parent ui-menu-item\\&quot;&gt;&quot;;\n        } else {\n            $html .= &quot;&lt;li class=\\&quot;level0 nav-4 level-top parent ui-menu-item\\&quot;&gt;&quot;;\n        }\n        $html .= &quot;&lt;a href=\\&quot;&quot; . $swappartyUrl . &quot;\\&quot; class=\\&quot;level-top ui-corner-all\\&quot;&gt;&lt;span class=\\&quot;ui-menu-icon ui-icon ui-icon-carat-1-e\\&quot;&gt;&lt;\/span&gt;&lt;span&gt;&quot; . __(&quot;Custom Menu&quot;) . &quot;&lt;\/span&gt;&lt;\/a&gt;&quot;;\n        $html .= &quot;&lt;\/li&gt;&quot;;\n        return $html;\n    }\n}<\/pre>\n\n\n\n<p>After adding above files please run following command :-<br>php bin\/magento setup:di:compile<br>php bin\/magento cache:flush<\/p>\n\n\n\n<p>Now you can check your custom link in navigation menu.<\/p>\n\n\n\n<p><img decoding=\"async\" width=\"1288\" height=\"216\" class=\"alignnone size-full wp-image-134696\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/07\/Screenshot_32.png\" alt=\"custom link in navigation\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/07\/Screenshot_32.png 1288w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/07\/Screenshot_32-250x42.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/07\/Screenshot_32-300x50.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/07\/Screenshot_32-768x129.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/07\/Screenshot_32-1200x201.png 1200w\" sizes=\"(max-width: 1288px) 100vw, 1288px\" loading=\"lazy\" \/><br>I hope this blog help you to add custom link in navigation menu.If you have any Query then please feel free to put it in comment section.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Sometimes we need to add some important links in navigation menu except category by which customer easily find that links and they can reach our information. We can achieve this goal by overwrite default magento file\u00a0vendor\/magento\/module-theme\/view\/frontend\/templates\/html\/topmenu.phtml. But this is not good practice by making changes in default Magento functionality. In Magento 2 added new feature <a href=\"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":115,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[7159,7161,7160],"class_list":["post-134685","post","type-post","status-publish","format-standard","hentry","category-magento2","tag-add-custom-link-in-navigation-menu","tag-magento-2-plugin","tag-using-plugin-add-custom-link"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to add custom link in navigation menu in magento2 using plugin<\/title>\n<meta name=\"description\" content=\"How to add custom link in navigation menu in magento2 using plugin\" \/>\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-add-custom-link-in-navigation-menu-in-magento2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to add custom link in navigation menu in magento2 using plugin\" \/>\n<meta property=\"og:description\" content=\"How to add custom link in navigation menu in magento2 using plugin\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-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=\"2018-07-21T11:56:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-26T06:32:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/07\/Screenshot_32.png\" \/>\n<meta name=\"author\" content=\"Shubham Sharma\" \/>\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=\"Shubham Sharma\" \/>\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\/how-to-add-custom-link-in-navigation-menu-in-magento2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/\"},\"author\":{\"name\":\"Shubham Sharma\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/ae41bc19a6783d2f09c6b9b3a0fbddfd\"},\"headline\":\"How to add custom link in navigation menu in Magento2\",\"datePublished\":\"2018-07-21T11:56:57+00:00\",\"dateModified\":\"2024-03-26T06:32:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/\"},\"wordCount\":233,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/07\/Screenshot_32.png\",\"keywords\":[\"Add custom link in navigation menu\",\"Magento 2 plugin\",\"using plugin add custom link\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/\",\"name\":\"How to add custom link in navigation menu in magento2 using plugin\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/07\/Screenshot_32.png\",\"datePublished\":\"2018-07-21T11:56:57+00:00\",\"dateModified\":\"2024-03-26T06:32:17+00:00\",\"description\":\"How to add custom link in navigation menu in magento2 using plugin\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/07\/Screenshot_32.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/07\/Screenshot_32.png\",\"width\":\"1288\",\"height\":\"216\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to add custom link in navigation menu in 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\/ae41bc19a6783d2f09c6b9b3a0fbddfd\",\"name\":\"Shubham Sharma\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cdf13545eee5ced4cecd7bd6cb94c1d842ec000d359f91dd900e0feec6242c3b?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\/cdf13545eee5ced4cecd7bd6cb94c1d842ec000d359f91dd900e0feec6242c3b?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Shubham Sharma\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/shubham-sharma967\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to add custom link in navigation menu in magento2 using plugin","description":"How to add custom link in navigation menu in magento2 using plugin","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-add-custom-link-in-navigation-menu-in-magento2\/","og_locale":"en_US","og_type":"article","og_title":"How to add custom link in navigation menu in magento2 using plugin","og_description":"How to add custom link in navigation menu in magento2 using plugin","og_url":"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-07-21T11:56:57+00:00","article_modified_time":"2024-03-26T06:32:17+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/07\/Screenshot_32.png","type":"","width":"","height":""}],"author":"Shubham Sharma","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Shubham Sharma","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/"},"author":{"name":"Shubham Sharma","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/ae41bc19a6783d2f09c6b9b3a0fbddfd"},"headline":"How to add custom link in navigation menu in Magento2","datePublished":"2018-07-21T11:56:57+00:00","dateModified":"2024-03-26T06:32:17+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/"},"wordCount":233,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/07\/Screenshot_32.png","keywords":["Add custom link in navigation menu","Magento 2 plugin","using plugin add custom link"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/","url":"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/","name":"How to add custom link in navigation menu in magento2 using plugin","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/07\/Screenshot_32.png","datePublished":"2018-07-21T11:56:57+00:00","dateModified":"2024-03-26T06:32:17+00:00","description":"How to add custom link in navigation menu in magento2 using plugin","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/07\/Screenshot_32.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/07\/Screenshot_32.png","width":"1288","height":"216"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-add-custom-link-in-navigation-menu-in-magento2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to add custom link in navigation menu in 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\/ae41bc19a6783d2f09c6b9b3a0fbddfd","name":"Shubham Sharma","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cdf13545eee5ced4cecd7bd6cb94c1d842ec000d359f91dd900e0feec6242c3b?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\/cdf13545eee5ced4cecd7bd6cb94c1d842ec000d359f91dd900e0feec6242c3b?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Shubham Sharma"},"url":"https:\/\/webkul.com\/blog\/author\/shubham-sharma967\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/134685","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\/115"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=134685"}],"version-history":[{"count":3,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/134685\/revisions"}],"predecessor-version":[{"id":429441,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/134685\/revisions\/429441"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=134685"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=134685"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=134685"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}