{"id":1267,"date":"2020-06-28T11:41:09","date_gmt":"2020-06-28T06:41:09","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=1267"},"modified":"2022-02-26T01:48:35","modified_gmt":"2022-02-25T20:48:35","slug":"angular-10-material-daterangepicker","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/","title":{"rendered":"Date Range Picker in Angular 10 (Material Design Example)"},"content":{"rendered":"\n<p>In Angular 10, its developers have introduced a new <strong>Date Range Picker<\/strong>, that looks cool!!!<\/p>\n\n\n\n<p>Recently, I managed to understand its code and now I&#8217;m going to share my knowledge with you guys through a step by step example.<\/p>\n\n\n\n<p>In this tutorial, we will be creating an <strong>Angular Material Date Range Picker<\/strong>. So, let&#8217;s get ready and follow along with me.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Getting Started<\/h2>\n\n\n\n<p>First of all, set up a new Angular 10 project.<\/p>\n\n\n\n<p>For that, you need <a rel=\"noreferrer noopener\" href=\"https:\/\/nodejs.org\/en\/\" target=\"_blank\">Node.js<\/a> and <a rel=\"noreferrer noopener\" href=\"https:\/\/www.npmjs.com\/\" target=\"_blank\">npm<\/a> installed on your computer. The latest version of Node.js is already packed with npm, so you don&#8217;t need to install it separately.<\/p>\n\n\n\n<p>Type this command to install Angular CLI globally.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">npm install -g @angular\/cli<\/pre>\n\n\n\n<p>Now, create a workspace and provide the name of your application. Replace <strong>&#8220;angular10-date-picker&#8221;<\/strong> with any other name if you like.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">ng new angular10-date-picker<\/pre>\n\n\n\n<p>Then, add Material Design components in our Angular 10 app.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">ng add @angular\/material<\/pre>\n\n\n\n<p>Type below command to compile the Angular 10 application.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">ng serve<\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Edit app.module.ts File<\/h2>\n\n\n\n<p>After compilation, open <strong>\/src\/app\/app.module.ts<\/strong> file. We need to import a few things here.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"typescript\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">import { MatDatepickerModule } from '@angular\/material\/datepicker';\nimport { MatNativeDateModule } from '@angular\/material\/core';\nimport { MatFormFieldModule } from '@angular\/material\/form-field';\nimport { ReactiveFormsModule } from '@angular\/forms';<\/pre>\n\n\n\n<p>Also add them inside the @NgModule imports option.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"typescript\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">@NgModule({\n  declarations: [\n    AppComponent\n  ],\n  imports: [\n    BrowserModule,\n    BrowserAnimationsModule,\n    MatDatepickerModule,\n    MatNativeDateModule,\n    MatFormFieldModule,\n    ReactiveFormsModule\n  ],\n  providers: [],\n  bootstrap: [AppComponent]\n})<\/pre>\n\n\n\n<p>Finally, <strong>\/src\/app\/app.module.ts<\/strong> file will look something like this.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"typescript\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">import { BrowserModule } from '@angular\/platform-browser';\nimport { NgModule } from '@angular\/core';\n\nimport { AppComponent } from '.\/app.component';\nimport { BrowserAnimationsModule } from '@angular\/platform-browser\/animations';\n\nimport { MatDatepickerModule } from '@angular\/material\/datepicker';\nimport { MatNativeDateModule } from '@angular\/material\/core';\nimport { MatFormFieldModule } from '@angular\/material\/form-field';\nimport { ReactiveFormsModule } from '@angular\/forms';\n\n\n@NgModule({\n  declarations: [\n    AppComponent\n  ],\n  imports: [\n    BrowserModule,\n    BrowserAnimationsModule,\n    MatDatepickerModule,\n    MatNativeDateModule,\n    MatFormFieldModule,\n    ReactiveFormsModule\n  ],\n  providers: [],\n  bootstrap: [AppComponent]\n})\nexport class AppModule { }<\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Edit app.component.ts File<\/h2>\n\n\n\n<p>Open <strong>\/src\/app\/app.component.ts<\/strong> file. Here, we need to add a range using <code>new FormGroup()<\/code>. Let&#8217;s have a look at the final contents of this file.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"typescript\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">import { Component } from '@angular\/core';\nimport { FormControl, FormGroup } from '@angular\/forms';\n\n@Component({\n  selector: 'app-root',\n  templateUrl: '.\/app.component.html',\n  styleUrls: ['.\/app.component.css']\n})\nexport class AppComponent {\n  title = 'angular10-date-picker';\n  \n  range = new FormGroup({\n    start: new FormControl(),\n    end: new FormControl()\n  });\n}<\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Edit app.component.html File<\/h2>\n\n\n\n<p>This file is located at: <strong>\/src\/app\/app.component.html<\/strong><\/p>\n\n\n\n<p>Remove existing boilerplate code from this file. We will be writing our own code here.<\/p>\n\n\n\n<p>Anyways, here&#8217;s the final code for this file.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"html\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;mat-form-field appearance=\"outline\">\n  &lt;mat-label>Select Date Range&lt;\/mat-label>\n  \n  &lt;mat-date-range-input [rangePicker]=\"picker\" [formGroup]=\"range\">\n    &lt;input matStartDate placeholder=\"Start Date\" formControlName=\"start\">\n    &lt;input matEndDate placeholder=\"End Date\" formControlName=\"end\">\n  &lt;\/mat-date-range-input>\n  \n  &lt;mat-datepicker-toggle matSuffix [for]=\"picker\">&lt;\/mat-datepicker-toggle>\n  \n  &lt;mat-date-range-picker #picker>&lt;\/mat-date-range-picker>\n&lt;\/mat-form-field>\n\n&lt;h1>{{range.value.start | date}}&lt;\/h1>\n&lt;h1>{{range.value.end | date}}&lt;\/h1><\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">View Output in Web Browser<\/h2>\n\n\n\n<p>As we have already compiled this project in the &#8220;Getting Started&#8221; section. It&#8217;s time to open your favorite web browser and view the <strong>Angular 10 Date Range Picker<\/strong>.<\/p>\n\n\n\n<p>Most of the time Angular project is using port 4200. So, to view it, type below link in your web browser&#8217;s address bar.<\/p>\n\n\n\n<p><strong>http:\/\/localhost:4200\/<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Screenshots<\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"381\" height=\"152\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2020\/06\/Angular-10-Date-Range-Picker-1.png\" alt=\"Angular 10 Date Range Picker - 1\" class=\"wp-image-1288\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2020\/06\/Angular-10-Date-Range-Picker-1.png 381w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2020\/06\/Angular-10-Date-Range-Picker-1-300x120.png 300w\" sizes=\"auto, (max-width: 381px) 100vw, 381px\" \/><figcaption>Angular 10 Date Range Picker &#8211; 1<\/figcaption><\/figure>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"337\" height=\"492\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2020\/06\/Angular-10-Date-Range-Picker-2.png\" alt=\"Angular 10 Date Range Picker - 2\" class=\"wp-image-1289\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2020\/06\/Angular-10-Date-Range-Picker-2.png 337w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2020\/06\/Angular-10-Date-Range-Picker-2-205x300.png 205w\" sizes=\"auto, (max-width: 337px) 100vw, 337px\" \/><figcaption>Angular 10 Date Range Picker &#8211; 2<\/figcaption><\/figure>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"291\" height=\"304\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2020\/06\/Angular-10-Date-Range-Picker-3.png\" alt=\"Angular 10 Date Range Picker - 3\" class=\"wp-image-1291\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2020\/06\/Angular-10-Date-Range-Picker-3.png 291w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2020\/06\/Angular-10-Date-Range-Picker-3-287x300.png 287w\" sizes=\"auto, (max-width: 291px) 100vw, 291px\" \/><figcaption>Angular 10 Date Range Picker &#8211; 3<\/figcaption><\/figure>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>That&#8217;s it for now. I hope you are now familiar with how to add a <strong>Date Range Picker in your Angular 10<\/strong> project. If you have any questions regarding the above source code then do let me know in the comments below.<\/p>\n\n\n\n<p>Please support me by sharing this article on your social media.<\/p>\n\n\n\n<p>See you in the next article!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In Angular 10, its developers have introduced a new Date Range Picker, that looks cool!!! Recently, I managed to understand its code and now I&#8217;m going to share my knowledge with you guys through a step by step example. In this tutorial, we will be creating an Angular Material Date Range Picker. So, let&#8217;s get &#8230; <a title=\"Date Range Picker in Angular 10 (Material Design Example)\" class=\"read-more\" href=\"https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/\" aria-label=\"Read more about Date Range Picker in Angular 10 (Material Design Example)\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":1426,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-1267","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Date Range Picker in Angular 10 (Material Design Example)<\/title>\n<meta name=\"description\" content=\"In Angular 10, its developers have introduced a new Date Range Picker, that looks cool!!! Recently, I managed to understand its code and now I&#039;m going to\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Date Range Picker in Angular 10 (Material Design Example)\" \/>\n<meta property=\"og:description\" content=\"In Angular 10, its developers have introduced a new Date Range Picker, that looks cool!!! Recently, I managed to understand its code and now I&#039;m going to\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/\" \/>\n<meta property=\"og:site_name\" content=\"Edopedia\" \/>\n<meta property=\"article:author\" content=\"trulyfurqan\" \/>\n<meta property=\"article:published_time\" content=\"2020-06-28T06:41:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-25T20:48:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2020\/06\/angular_10_date_range_picker.png\" \/>\n\t<meta property=\"og:image:width\" content=\"875\" \/>\n\t<meta property=\"og:image:height\" content=\"492\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Furqan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Furqan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Date Range Picker in Angular 10 (Material Design Example)","description":"In Angular 10, its developers have introduced a new Date Range Picker, that looks cool!!! Recently, I managed to understand its code and now I'm going to","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:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/","og_locale":"en_US","og_type":"article","og_title":"Date Range Picker in Angular 10 (Material Design Example)","og_description":"In Angular 10, its developers have introduced a new Date Range Picker, that looks cool!!! Recently, I managed to understand its code and now I'm going to","og_url":"https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2020-06-28T06:41:09+00:00","article_modified_time":"2022-02-25T20:48:35+00:00","og_image":[{"width":875,"height":492,"url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2020\/06\/angular_10_date_range_picker.png","type":"image\/png"}],"author":"Furqan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Furqan","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"Date Range Picker in Angular 10 (Material Design Example)","datePublished":"2020-06-28T06:41:09+00:00","dateModified":"2022-02-25T20:48:35+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/"},"wordCount":398,"commentCount":2,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2020\/06\/angular_10_date_range_picker.png","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/","url":"https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/","name":"Date Range Picker in Angular 10 (Material Design Example)","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2020\/06\/angular_10_date_range_picker.png","datePublished":"2020-06-28T06:41:09+00:00","dateModified":"2022-02-25T20:48:35+00:00","description":"In Angular 10, its developers have introduced a new Date Range Picker, that looks cool!!! Recently, I managed to understand its code and now I'm going to","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2020\/06\/angular_10_date_range_picker.png","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2020\/06\/angular_10_date_range_picker.png","width":875,"height":492,"caption":"Angular 10 Date Range Picker"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/angular-10-material-daterangepicker\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Date Range Picker in Angular 10 (Material Design Example)"}]},{"@type":"WebSite","@id":"https:\/\/www.edopedia.com\/blog\/#website","url":"https:\/\/www.edopedia.com\/blog\/","name":"Edopedia","description":"Coding\/Programming Blog","publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.edopedia.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.edopedia.com\/blog\/#organization","name":"Edopedia","url":"https:\/\/www.edopedia.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","width":400,"height":100,"caption":"Edopedia"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339","name":"Furqan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","caption":"Furqan"},"description":"Well. I've been working for the past three years as a web designer and developer. I have successfully created websites for small to medium sized companies as part of my freelance career. During that time I've also completed my bachelor's in Information Technology.","sameAs":["http:\/\/www.edopedia.com\/blog\/","trulyfurqan"],"url":"https:\/\/www.edopedia.com\/blog\/author\/furqan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/1267","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/comments?post=1267"}],"version-history":[{"count":0,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/1267\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/1426"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=1267"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=1267"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=1267"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}