{"id":62749,"date":"2016-10-21T15:50:46","date_gmt":"2016-10-21T15:50:46","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=62749"},"modified":"2024-02-21T08:01:19","modified_gmt":"2024-02-21T08:01:19","slug":"add-custom-fee-downloaded-pdf-order-magento2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/","title":{"rendered":"Add Custom fee in Downloaded PDF of an order in Magento 2"},"content":{"rendered":"\n<p>To add order&#8217;s custom fee amount field in PDF which is downloaded either from admin or from frontend, to can use following process:<\/p>\n\n\n\n<p>Firstly you have to create pdf.xml at path :<\/p>\n\n\n\n<p>app\\code\\Webkul\\Test\\etc<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n&lt;config xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:module:Magento_Sales:etc\/pdf_file.xsd&quot;&gt;\n    &lt;totals&gt;\n        &lt;total name=&quot;custom_fee&quot;&gt;\n            &lt;title translate=&quot;true&quot;&gt;Custom Fee&lt;\/title&gt;\n            &lt;source_field&gt;custom_fee&lt;\/source_field&gt;\n            &lt;model&gt;Webkul\\Test\\Model\\Sales\\Pdf\\Customfee&lt;\/model&gt;\n            &lt;font_size&gt;7&lt;\/font_size&gt;\n            &lt;display_zero&gt;false&lt;\/display_zero&gt;\n            &lt;sort_order&gt;600&lt;\/sort_order&gt;\n        &lt;\/total&gt;\n    &lt;\/totals&gt;\n&lt;\/config&gt;<\/pre>\n\n\n\n<p>Here, <strong>source_field:<\/strong>&nbsp;is the field name which you created as a field in order.<\/p>\n\n\n\n<p><strong>model:<\/strong> is the file in model in which you code to add field in totals.<\/p>\n\n\n\n<p><strong>font_size:<\/strong> default font_size is 7 you can change it.<\/p>\n\n\n\n<p><strong>display_zero:<\/strong> If you don&#8217;t want to display field if amount is 0 then set it to false, otherwise set it to true.<\/p>\n\n\n\n<p><strong>sort_order:<\/strong> sort order for the position of your field.<\/p>\n\n\n\n<p>Now create file at path:\u00a0\u00a0app\\code\\Webkul\\Test\\Model\\Sales\\Pdf\\Customfee.php<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\nnamespace Webkul\\Test\\Model\\Sales\\Pdf;\n\nclass Customfee extends \\Magento\\Sales\\Model\\Order\\Pdf\\Total\\DefaultTotal\n{\n    public function getTotalsForDisplay()\n    {\n        $amount = $this-&gt;getOrder()-&gt;formatPriceTxt($this-&gt;getAmount());\n        if ($this-&gt;getAmountPrefix()) {\n            $amount = $this-&gt;getAmountPrefix() . $amount;\n        }\n\n        $title = __($this-&gt;getTitle());\n        if ($this-&gt;getTitleSourceField()) {\n            $label = $title . &#039; (&#039; . $this-&gt;getTitleDescription() . &#039;):&#039;;\n        } else {\n            $label = $title . &#039;:&#039;;\n        }\n\n        $fontSize = $this-&gt;getFontSize() ? $this-&gt;getFontSize() : 7;\n        $total = &#091;&#039;amount&#039; =&gt; $amount, &#039;label&#039; =&gt; $label, &#039;font_size&#039; =&gt; $fontSize];\n        return &#091;$total];\n    }\n}<\/pre>\n\n\n\n<p>after this your field will be added in downloaded pdf of an order.<\/p>\n\n\n\n<p>Here are some related links for&nbsp;managing custom fee in order:<\/p>\n\n\n\n<p><a href=\"http:\/\/webkul.com\/blog\/add-custom-pricefee-order-total-magento2\/\" target=\"_blank\" rel=\"noopener\">Add Custom Price Fee In Order Total Magento2<\/a><\/p>\n\n\n\n<p><a href=\"http:\/\/webkul.com\/blog\/display-custom-price-fee-checkout-cart-summary-total-magento2\/\" target=\"_blank\" rel=\"noopener\">Display Custom Price Fee On Checkout Cart Summary Total Magento2<\/a><\/p>\n\n\n\n<p><a href=\"http:\/\/webkul.com\/blog\/display-custom-pricefee-sales-order-view-page\/\" target=\"_blank\" rel=\"noopener\">Display Custom Price Fee On Sales Order View Page<\/a><\/p>\n\n\n\n<p>I hope this blog will help you with Add Custom fee in Downloaded PDF of an order in Magento 2. You may also check our wide range of best <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>To add order&#8217;s custom fee amount field in PDF which is downloaded either from admin or from frontend, to can use following process: Firstly you have to create pdf.xml at path : app\\code\\Webkul\\Test\\etc Here, source_field:&nbsp;is the field name which you created as a field in order. model: is the file in model in which you <a href=\"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":68,"featured_media":60192,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[3011,2070],"class_list":["post-62749","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento2","tag-custom-fee","tag-magento2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Add Custom fee in Downloaded PDF of an order in Magento 2<\/title>\n<meta name=\"description\" content=\"In this blog we will discuss add custom fee in downloaded PDF of an order 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\/add-custom-fee-downloaded-pdf-order-magento2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Add Custom fee in Downloaded PDF of an order in Magento 2\" \/>\n<meta property=\"og:description\" content=\"In this blog we will discuss add custom fee in downloaded PDF of an order Magento 2\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-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-10-21T15:50:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-21T08:01:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/Magneto-Code-Snippet-1.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=\"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\/add-custom-fee-downloaded-pdf-order-magento2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/\"},\"author\":{\"name\":\"Bulbul\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/c9c6288b3950490ffdb37cb2a526996e\"},\"headline\":\"Add Custom fee in Downloaded PDF of an order in Magento 2\",\"datePublished\":\"2016-10-21T15:50:46+00:00\",\"dateModified\":\"2024-02-21T08:01:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/\"},\"wordCount\":246,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/Magneto-Code-Snippet-1.png\",\"keywords\":[\"custom fee\",\"Magento2\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/\",\"url\":\"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/\",\"name\":\"Add Custom fee in Downloaded PDF of an order in Magento 2\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/Magneto-Code-Snippet-1.png\",\"datePublished\":\"2016-10-21T15:50:46+00:00\",\"dateModified\":\"2024-02-21T08:01:19+00:00\",\"description\":\"In this blog we will discuss add custom fee in downloaded PDF of an order Magento 2\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/Magneto-Code-Snippet-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/Magneto-Code-Snippet-1.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Add Custom fee in Downloaded PDF of an order 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":"Add Custom fee in Downloaded PDF of an order in Magento 2","description":"In this blog we will discuss add custom fee in downloaded PDF of an order 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\/add-custom-fee-downloaded-pdf-order-magento2\/","og_locale":"en_US","og_type":"article","og_title":"Add Custom fee in Downloaded PDF of an order in Magento 2","og_description":"In this blog we will discuss add custom fee in downloaded PDF of an order Magento 2","og_url":"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-10-21T15:50:46+00:00","article_modified_time":"2024-02-21T08:01:19+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/Magneto-Code-Snippet-1.png","type":"image\/png"}],"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\/add-custom-fee-downloaded-pdf-order-magento2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/"},"author":{"name":"Bulbul","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/c9c6288b3950490ffdb37cb2a526996e"},"headline":"Add Custom fee in Downloaded PDF of an order in Magento 2","datePublished":"2016-10-21T15:50:46+00:00","dateModified":"2024-02-21T08:01:19+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/"},"wordCount":246,"commentCount":2,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/Magneto-Code-Snippet-1.png","keywords":["custom fee","Magento2"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/","url":"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/","name":"Add Custom fee in Downloaded PDF of an order in Magento 2","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/Magneto-Code-Snippet-1.png","datePublished":"2016-10-21T15:50:46+00:00","dateModified":"2024-02-21T08:01:19+00:00","description":"In this blog we will discuss add custom fee in downloaded PDF of an order Magento 2","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/Magneto-Code-Snippet-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/Magneto-Code-Snippet-1.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/add-custom-fee-downloaded-pdf-order-magento2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Add Custom fee in Downloaded PDF of an order 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\/62749","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=62749"}],"version-history":[{"count":13,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/62749\/revisions"}],"predecessor-version":[{"id":423334,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/62749\/revisions\/423334"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/60192"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=62749"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=62749"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=62749"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}