{"id":28944,"date":"2023-01-04T13:06:17","date_gmt":"2023-01-04T07:36:17","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/"},"modified":"2023-01-04T13:06:17","modified_gmt":"2023-01-04T07:36:17","slug":"solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/","title":{"rendered":"[Solved] How to create posts-by-month-and-year table in Jekyll without plugins? [closed]"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-33965943\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"33965943\" data-parentid=\"33961893\" data-score=\"1\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>This is the code for the <code>archive.html<\/code> page. You can see it <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/pygmeeweb.com\/jekyllBoilerplate\/archive\/\">live here<\/a>.<\/p>\n<p>Tested with 400 posts, no performance issues on build\/serve.<\/p>\n<pre><code>---\nlayout: page\ntitle: archive\n---\n\n{%comment%} ++++++++++ We first find start and end years ++++++++++ {%endcomment%}\n{% assign startYear = 2222 %}\n{% assign endYear   = 1 %}\n\n{% for post in site.posts %}\n  {%comment%} +++++\n    \"| plus: 0\" casts postYear to fixnum, because \"post.date | date: \"%Y\"\" is a string\n    and comparing \"2013\" with 2012 (string \/ number) throws an error\n  +++++ {%endcomment%}\n  {% assign postYear = post.date | date: \"%Y\" | plus: 0 %}\n\n  {% if postYear &gt; endYear %}{% assign endYear = postYear %}{% endif %}\n  {% if postYear &lt; startYear %}{% assign startYear = postYear %}{% endif %}\n{% endfor %}\n\n{%comment%} +++++++++++++++ build the table +++++++++++++++ {%endcomment%}\n\n{% assign tableContent = \"&lt;tr&gt;&lt;th&gt;&lt;\/th&gt;&lt;th&gt;Jan&lt;\/th&gt;&lt;th&gt;Feb&lt;\/th&gt;&lt;th&gt;Mar&lt;\/th&gt;&lt;th&gt;Apr&lt;\/th&gt;&lt;th&gt;May&lt;\/th&gt;&lt;th&gt;Jun&lt;\/th&gt;&lt;th&gt;Jul&lt;\/th&gt;&lt;th&gt;Aug&lt;\/th&gt;&lt;th&gt;Sep&lt;\/th&gt;&lt;th&gt;Oct&lt;\/th&gt;&lt;th&gt;Nov&lt;\/th&gt;&lt;th&gt;Dec&lt;\/th&gt;&lt;\/tr&gt;\" %}\n\n{%comment%} +++++\n  currentPostIndex is used to loop over post in an efficient way\n  Knowing that posts a sorted by date, we don't need to loop over\n  all posts each time we want to inspect them.\n  Instead we only loop through posts we don't already inspect.\n+++++ {%endcomment%}\n{% assign currentPostIndex = 0 %}\n\n{%comment%} +++++ site.posts array is zero numbered, so last index = size-1 +++++ {%endcomment%}\n{% assign lastPostIndex = site.posts.size | minus: 1 %}\n\n{%comment%} +++++ Looping trough years in REVERSE order +++++ {%endcomment%}\n{% for year in (startYear...endYear) reversed %}\n\n  {% assign yearRow = \"&lt;tr&gt;&lt;th&gt;\" | append: year | append: \"&lt;\/th&gt;\" %}\n\n  {%comment%} +++++ Trick to create an empty array +++++ {%endcomment%}\n  {% assign yearCellsArray = \"\" | split: \"https:\/\/stackoverflow.com\/\" %}\n\n  {%comment%} +++++ Looping over month reversed +++++ {%endcomment%}\n  {% for month in (1...12) reversed %}\n\n    {% assign postsThisYearMonth = 0 %}\n    {% assign monthCell = \"&lt;td&gt;\" %}\n\n    {% for postIndex in (currentPostIndex...lastPostIndex) %}\n\n      {% assign p      = site.posts[postIndex] %}\n      {% assign pYear  = p.date | date: \"%Y\" | plus: 0 %}\n      {% assign pMonth = p.date | date: \"%m\" | plus: 0 %}\n\n      {% if pYear == year and pMonth == month %}\n        {% assign postsThisYearMonth = postsThisYearMonth | plus: 1 %}\n      {% else %}\n        {%comment%} +++++ Here we stop the loop +++++ {%endcomment%}\n        {% assign currentPostIndex = postIndex %}\n        {% break %}\n      {% endif %}\n\n    {% endfor %}\n\n    {% if postsThisYearMonth &gt; 0 %}\n      {% assign linkTargetId = \"#\" | append: year | append: \"-\" | append: month %}\n      {% assign linkStart    = \"&lt;a href=\"\" | append: linkTargetId | append: \"\"&gt;\" %}\n      {% assign linkEnd      = \"&lt;\/a&gt;\" %}\n      {% assign cellContent  = linkStart | append: postsThisYearMonth | append: linkEnd %}\n    {% else %}\n      {% assign cellContent  = \"&amp;nbsp\" %}\n    {% endif %}\n\n    {% assign monthCell = monthCell | append: cellContent | append: \"&lt;\/td&gt;\" %}\n    {% assign yearCellsArray = yearCellsArray | unshift: monthCell %}\n\n  {% endfor %}\n\n  {% assign yearCells = yearCellsArray | join: \"\" %}\n  {% assign yearRow = yearRow | append: yearCells | append: \"&lt;\/tr&gt;\" %}\n  {% assign tableContent = tableContent | append: yearRow %}\n\n{% endfor %}\n\n&lt;h2&gt;All Posts By Date&lt;\/h2&gt;\n&lt;table class=\"table table-striped blogcalendar\"&gt;\n  &lt;tbody&gt;\n    {{ tableContent }}\n  &lt;\/tbody&gt;\n&lt;\/table&gt;\n\n{%comment%} +++++ Printing posts by Year then month +++++ {%endcomment%}\n\n{% assign currentPostIndex = 0 %}\n{% assign lastPostIndex = site.posts.size | minus: 1 %}\n\n{% for year in (startYear...endYear) reversed %}\n  &lt;h3&gt;{{year}}&lt;\/h3&gt;\n  {% assign currentYear = year %}\n  {% for month in (1...12) reversed %}\n\n    {% assign postsArray = \"\" | split: \"https:\/\/stackoverflow.com\/\" %}\n\n    {%comment%} +++++ Find post for this year \/ month +++++ {%endcomment%}\n    {% for postIndex in (currentPostIndex...lastPostIndex) %}\n      {% assign p      = site.posts[postIndex] %}\n      {% assign pYear  = p.date | date: \"%Y\" | plus: 0 %}\n      {% assign pMonth = p.date | date: \"%m\" | plus: 0 %}\n\n      {% if pYear == year and pMonth == month %}\n        {% assign postsArray = postsArray | push: p %}\n      {% else %}\n        {%comment%} +++++ Here we stop the loop +++++ {%endcomment%}\n        {% assign currentPostIndex = postIndex %}\n        {% break %}\n      {% endif %}\n    {% endfor %}\n\n    {% assign postArraySize = postsArray | size %}\n\n    {%comment%} +++++ Printing posts if we have some for this year month +++++ {%endcomment%}\n    {% if postArraySize and postArraySize &gt; 0 %}\n\n      {%comment%} +++++ get month name from a post.date +++++ {%endcomment%}\n      {% assign post = postsArray | first %}\n      {% assign monthName = post.date | date: \"%B\" %}\n\n      {% assign monthId = year | append: \"-\" | append: month %}\n\n      &lt;h4 id=\"{{ monthId }}\"&gt;{{ monthName }} {{ year }}&lt;\/h4&gt;\n      &lt;table class=\"table table-striped\"&gt;\n      {% for p in postsArray %}\n        &lt;tr&gt;\n          &lt;td&gt;{{ p.date | date: \"%Y-%m-%d\" }}&lt;\/td&gt;\n          &lt;td&gt;\n              &lt;a href=\"{{ site.baseurl }}{{ p.url }}\"&gt;\n                  {{ p.title }}\n              &lt;\/a&gt;\n          &lt;\/td&gt;\n        &lt;\/tr&gt;\n      {% endfor %}\n      &lt;\/table&gt;\n    {% endif %}\n\n  {% endfor %}\n\n{% endfor %}\n<\/code><\/pre>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">2<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved How to create posts-by-month-and-year table in Jekyll without plugins? [closed] <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] This is the code for the archive.html page. You can see it live here. Tested with 400 posts, no performance issues on build\/serve. &#8212; layout: page title: archive &#8212; {%comment%} ++++++++++ We first find start and end years ++++++++++ {%endcomment%} {% assign startYear = 2222 %} {% assign endYear = 1 %} {% for &#8230; <a title=\"[Solved] How to create posts-by-month-and-year table in Jekyll without plugins? [closed]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/\" aria-label=\"More on [Solved] How to create posts-by-month-and-year table in Jekyll without plugins? [closed]\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[4295],"class_list":["post-28944","post","type-post","status-publish","format-standard","hentry","category-solved","tag-jekyll"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] How to create posts-by-month-and-year table in Jekyll without plugins? [closed] - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] How to create posts-by-month-and-year table in Jekyll without plugins? [closed] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] This is the code for the archive.html page. You can see it live here. Tested with 400 posts, no performance issues on build\/serve. --- layout: page title: archive --- {%comment%} ++++++++++ We first find start and end years ++++++++++ {%endcomment%} {% assign startYear = 2222 %} {% assign endYear = 1 %} {% for ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-04T07:36:17+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\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:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] How to create posts-by-month-and-year table in Jekyll without plugins? [closed]\",\"datePublished\":\"2023-01-04T07:36:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/\"},\"wordCount\":46,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"jekyll\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/\",\"name\":\"[Solved] How to create posts-by-month-and-year table in Jekyll without plugins? [closed] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2023-01-04T07:36:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] How to create posts-by-month-and-year table in Jekyll without plugins? [closed]\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] How to create posts-by-month-and-year table in Jekyll without plugins? [closed] - JassWeb","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:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] How to create posts-by-month-and-year table in Jekyll without plugins? [closed] - JassWeb","og_description":"[ad_1] This is the code for the archive.html page. You can see it live here. Tested with 400 posts, no performance issues on build\/serve. --- layout: page title: archive --- {%comment%} ++++++++++ We first find start and end years ++++++++++ {%endcomment%} {% assign startYear = 2222 %} {% assign endYear = 1 %} {% for ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/","og_site_name":"JassWeb","article_published_time":"2023-01-04T07:36:17+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] How to create posts-by-month-and-year table in Jekyll without plugins? [closed]","datePublished":"2023-01-04T07:36:17+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/"},"wordCount":46,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["jekyll"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/","url":"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/","name":"[Solved] How to create posts-by-month-and-year table in Jekyll without plugins? [closed] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2023-01-04T07:36:17+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-create-posts-by-month-and-year-table-in-jekyll-without-plugins-closed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] How to create posts-by-month-and-year table in Jekyll without plugins? [closed]"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/28944","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=28944"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/28944\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=28944"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=28944"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=28944"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}