{"id":1088,"date":"2018-10-28T12:31:00","date_gmt":"2018-10-28T16:31:00","guid":{"rendered":"https:\/\/debradalgleish.com\/blog\/?p=1088"},"modified":"2023-03-12T16:07:36","modified_gmt":"2023-03-12T20:07:36","slug":"create-rss-feed-entries-in-microsoft-access","status":"publish","type":"post","link":"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/","title":{"rendered":"Create RSS Feed Entries in Microsoft Access"},"content":{"rendered":"<p>To keep track of what I&#8217;ve posted on my Contextures Excel tips website, I use Microsoft Access. You can&#8217;t do everything in Excel! In that database, I enter a bit of information about each page, and there is a query to create RSS feed entries. I paste those into an XML file, and upload it. Here&#8217;s how I create the entries, in case it helps you!<\/p>\n<p><!--more--><\/p>\n<h3>Enter Page Information<\/h3>\n<p>There&#8217;s a sample file that you can download, with a very small database, to show how to create RSS feed entries. The download link is at the end of this article.<\/p>\n<p>When you open the database, the data entry form automatically opens.\u00a0 There are 6 fields to fill in \u2013 Page URL, Page Title, Page Desc, Date Created, Time, and Time Zone.<\/p>\n<p><a href=\"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed01.png\"><img loading=\"lazy\" decoding=\"async\" style=\"border: 0px currentcolor; display: inline; background-image: none;\" title=\"accessrssfeed01\" src=\"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed01_thumb.png\" alt=\"accessrssfeed01\" width=\"425\" height=\"185\" border=\"0\" \/><\/a><\/p>\n<h3>Fill in the Fields<\/h3>\n<p>To create RSS feed entries that are valid items, you need to fill in each of the six fields.<\/p>\n<p><strong>Page URL<\/strong> \u2013 This is set up for unique entries, so you can&#8217;t accidentally enter the same page twice.<\/p>\n<p><strong>Page Title\u00a0 and Page Desc<\/strong> \u2013 Follow the latest SEO guidelines for your page title and page description. Currently, 50-60 characters is the recommended length for a title, and about 150 for the description. These fields are set up for short text.<\/p>\n<p><strong>Date and Time <\/strong>\u2013 The text boxes in the form are formatted for medium date and medium time and short text. Type a valid date and time, or use shortcut key <strong>Ctrl+;<\/strong> to enter the current date, and <strong>Ctrl+Shift+;<\/strong> to enter the current time.<\/p>\n<p><strong>Time Zone<\/strong> \u2013 Enter a valid time zone abbreviation, such as EDT\u00a0 or EST. There is a <a title=\"list of time zones\" href=\"https:\/\/en.wikipedia.org\/wiki\/List_of_time_zone_abbreviations\">list of time zones<\/a> on Wikipedia.<\/p>\n<h3>RSS Feed Date Format<\/h3>\n<p>The trickiest part of the RSS feed entry is building the publication date in the required format. There is a three character weekday, followed by a comma, then the date in &#8220;dd mmm yyyy&#8221; format, and time in &#8220;hh:mm:ss&#8221; format<\/p>\n<p><strong>Sat, 03 Jul 2010 16:30:00<\/strong><\/p>\n<h3>RSS Calculation<\/h3>\n<p>The sample database has a query named SitePagesWithRSS. In that query, there is a formula named RSSCalc, which creates the text for the RSS feed entry.<\/p>\n<p>As you enter the web page data in the form, you&#8217;ll see the RSS entry being created, in the text box at the bottom of the form.<\/p>\n<p><a href=\"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed02.png\"><img loading=\"lazy\" decoding=\"async\" style=\"border: 0px currentcolor; display: inline; background-image: none;\" title=\"accessrssfeed02\" src=\"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed02_thumb.png\" alt=\"accessrssfeed02\" width=\"425\" height=\"217\" border=\"0\" \/><\/a><\/p>\n<h3>RSS Calculation Formula<\/h3>\n<p>Here is the formula from the query, to calculate the RSS:<\/p>\n<pre>RSSCalc: \"\" &amp; Chr(10) &amp; \"\" &amp; Chr(10) &amp; \"\" &amp; [PageDesc] &amp; \"\" &amp; Chr(10) &amp; \"\" &amp; [PageURL] &amp; \"\" &amp; Chr(10) &amp; \"\" &amp; Format([DateCreated],\"ddd\"\", \"\"dd mmm yyyy\") &amp; \" \" &amp; IIf([TimeCreated] Is Not Null,Format(TimeSerial(Hour([TimeCreated]),Minute([TimeCreated]),0),\"hh:nn:ss\"),\"\") &amp; \" \" &amp; [CreatedTZ] &amp; \"\" &amp; Chr(10) &amp; \"\" &amp; [PageURL] &amp; \"\" &amp; Chr(10) &amp; \"\"<\/pre>\n<p>And here&#8217;s how the formula looks in the Zoom window of the query.<\/p>\n<p><a href=\"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed03.png\"><img loading=\"lazy\" decoding=\"async\" style=\"border: 0px currentcolor; display: inline; background-image: none;\" title=\"accessrssfeed03\" src=\"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed03_thumb.png\" alt=\"accessrssfeed03\" width=\"419\" height=\"224\" border=\"0\" \/><\/a><\/p>\n<h3>Copy the RSS Feed Text<\/h3>\n<p>As you can see in the Zoom window screen shot, there are line break characters &#8220;Chr(10)&#8221; in the formula.<\/p>\n<p>In the Data Entry form, the RSS feed text is one long string, without those line breaks. Instead, it breaks at space characters, or when it runs out of room in a line.<\/p>\n<p>However, if you copy the text from the RSS text box, and paste it into an XML file, the line breaks will appear correctly.<\/p>\n<p>Then, upload your file, and validate it at one of the RSS validation sites, such as <a title=\"Feed Validator\" href=\"http:\/\/www.feedvalidator.org\/\">Feed Validator<\/a>.<\/p>\n<p><a href=\"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed04.png\"><img loading=\"lazy\" decoding=\"async\" style=\"border: 0px currentcolor; display: inline; background-image: none;\" title=\"accessrssfeed04\" src=\"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed04_thumb.png\" alt=\"accessrssfeed04\" width=\"425\" height=\"201\" border=\"0\" \/><\/a><\/p>\n<h3>Get the Create RSS Feed Entries Database<\/h3>\n<p>Click the link here to <a title=\"download the zipped RSS Feed Database file\" href=\"https:\/\/www.contextures.com\/accesssamples\/WebsiteDb.zip\">download the zipped RSS Feed Database file<\/a> (29 KB). The file is in accdb format, and there is a macro on the Data Entry form combo box. When you select a page URL from the list, it goes to that record.<\/p>\n<p>The Create RSS Feed Entries database has three sample records, with pages from my <a title=\"Contextures Excel Tips website\" href=\"https:\/\/www.contextures.com\/excelfiles.html\">Contextures Excel Tips website<\/a>.<\/p>\n<p>_____________________<\/p>\n","protected":false},"excerpt":{"rendered":"<p>To keep track of what I&#8217;ve posted on my Contextures Excel tips website, I use Microsoft Access. You can&#8217;t do everything in Excel! In that database, I enter a bit of information about each page, and there is a query to create RSS feed entries. I paste those into an XML file, and upload it. &hellip; <a href=\"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Create RSS Feed Entries in Microsoft Access&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":1082,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12],"tags":[],"class_list":["post-1088","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-microsoft-office-tips"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Create RSS Feed Entries in Microsoft Access - Debra D&#039;s Blog<\/title>\n<meta name=\"description\" content=\"Create RSS feed entries with a query in Microsoft Access. Download free database sample to see the formula and data entry form\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create RSS Feed Entries in Microsoft Access - Debra D&#039;s Blog\" \/>\n<meta property=\"og:description\" content=\"Create RSS feed entries with a query in Microsoft Access. Download free database sample to see the formula and data entry form\" \/>\n<meta property=\"og:url\" content=\"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/\" \/>\n<meta property=\"og:site_name\" content=\"Debra D&#039;s Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-28T16:31:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-12T20:07:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed02.png\" \/>\n\t<meta property=\"og:image:width\" content=\"425\" \/>\n\t<meta property=\"og:image:height\" content=\"217\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Debra Dalgleish\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Debra Dalgleish\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/\"},\"author\":{\"name\":\"Debra Dalgleish\",\"@id\":\"https:\/\/debradalgleish.com\/blog\/#\/schema\/person\/fc3f038bcaeda478f9c5c06cfe648735\"},\"headline\":\"Create RSS Feed Entries in Microsoft Access\",\"datePublished\":\"2018-10-28T16:31:00+00:00\",\"dateModified\":\"2023-03-12T20:07:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/\"},\"wordCount\":589,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed02.png\",\"articleSection\":[\"Microsoft Office Tips\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/\",\"url\":\"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/\",\"name\":\"Create RSS Feed Entries in Microsoft Access - Debra D&#039;s Blog\",\"isPartOf\":{\"@id\":\"https:\/\/debradalgleish.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed02.png\",\"datePublished\":\"2018-10-28T16:31:00+00:00\",\"dateModified\":\"2023-03-12T20:07:36+00:00\",\"author\":{\"@id\":\"https:\/\/debradalgleish.com\/blog\/#\/schema\/person\/fc3f038bcaeda478f9c5c06cfe648735\"},\"description\":\"Create RSS feed entries with a query in Microsoft Access. Download free database sample to see the formula and data entry form\",\"breadcrumb\":{\"@id\":\"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/#primaryimage\",\"url\":\"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed02.png\",\"contentUrl\":\"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed02.png\",\"width\":425,\"height\":217,\"caption\":\"Create RSS Feed Entries in Microsoft Access\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/debradalgleish.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create RSS Feed Entries in Microsoft Access\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/debradalgleish.com\/blog\/#website\",\"url\":\"https:\/\/debradalgleish.com\/blog\/\",\"name\":\"Debra D&#039;s Blog\",\"description\":\"Behind the Scenes in My Online Business\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/debradalgleish.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/debradalgleish.com\/blog\/#\/schema\/person\/fc3f038bcaeda478f9c5c06cfe648735\",\"name\":\"Debra Dalgleish\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/debradalgleish.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4ce35cfcf6755fd46a43ba02263b28eeee3c46c5caac91f7ff18f31c817bb943?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4ce35cfcf6755fd46a43ba02263b28eeee3c46c5caac91f7ff18f31c817bb943?s=96&d=mm&r=g\",\"caption\":\"Debra Dalgleish\"},\"url\":\"https:\/\/debradalgleish.com\/blog\/author\/debra\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create RSS Feed Entries in Microsoft Access - Debra D&#039;s Blog","description":"Create RSS feed entries with a query in Microsoft Access. Download free database sample to see the formula and data entry form","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:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/","og_locale":"en_US","og_type":"article","og_title":"Create RSS Feed Entries in Microsoft Access - Debra D&#039;s Blog","og_description":"Create RSS feed entries with a query in Microsoft Access. Download free database sample to see the formula and data entry form","og_url":"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/","og_site_name":"Debra D&#039;s Blog","article_published_time":"2018-10-28T16:31:00+00:00","article_modified_time":"2023-03-12T20:07:36+00:00","og_image":[{"width":425,"height":217,"url":"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed02.png","type":"image\/png"}],"author":"Debra Dalgleish","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Debra Dalgleish","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/#article","isPartOf":{"@id":"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/"},"author":{"name":"Debra Dalgleish","@id":"https:\/\/debradalgleish.com\/blog\/#\/schema\/person\/fc3f038bcaeda478f9c5c06cfe648735"},"headline":"Create RSS Feed Entries in Microsoft Access","datePublished":"2018-10-28T16:31:00+00:00","dateModified":"2023-03-12T20:07:36+00:00","mainEntityOfPage":{"@id":"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/"},"wordCount":589,"commentCount":0,"image":{"@id":"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/#primaryimage"},"thumbnailUrl":"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed02.png","articleSection":["Microsoft Office Tips"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/","url":"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/","name":"Create RSS Feed Entries in Microsoft Access - Debra D&#039;s Blog","isPartOf":{"@id":"https:\/\/debradalgleish.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/#primaryimage"},"image":{"@id":"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/#primaryimage"},"thumbnailUrl":"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed02.png","datePublished":"2018-10-28T16:31:00+00:00","dateModified":"2023-03-12T20:07:36+00:00","author":{"@id":"https:\/\/debradalgleish.com\/blog\/#\/schema\/person\/fc3f038bcaeda478f9c5c06cfe648735"},"description":"Create RSS feed entries with a query in Microsoft Access. Download free database sample to see the formula and data entry form","breadcrumb":{"@id":"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/#primaryimage","url":"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed02.png","contentUrl":"https:\/\/debradalgleish.com\/blog\/wp-content\/uploads\/2018\/10\/accessrssfeed02.png","width":425,"height":217,"caption":"Create RSS Feed Entries in Microsoft Access"},{"@type":"BreadcrumbList","@id":"https:\/\/debradalgleish.com\/blog\/2018\/10\/28\/create-rss-feed-entries-in-microsoft-access\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/debradalgleish.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Create RSS Feed Entries in Microsoft Access"}]},{"@type":"WebSite","@id":"https:\/\/debradalgleish.com\/blog\/#website","url":"https:\/\/debradalgleish.com\/blog\/","name":"Debra D&#039;s Blog","description":"Behind the Scenes in My Online Business","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/debradalgleish.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/debradalgleish.com\/blog\/#\/schema\/person\/fc3f038bcaeda478f9c5c06cfe648735","name":"Debra Dalgleish","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/debradalgleish.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/4ce35cfcf6755fd46a43ba02263b28eeee3c46c5caac91f7ff18f31c817bb943?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4ce35cfcf6755fd46a43ba02263b28eeee3c46c5caac91f7ff18f31c817bb943?s=96&d=mm&r=g","caption":"Debra Dalgleish"},"url":"https:\/\/debradalgleish.com\/blog\/author\/debra\/"}]}},"_links":{"self":[{"href":"https:\/\/debradalgleish.com\/blog\/wp-json\/wp\/v2\/posts\/1088","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/debradalgleish.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/debradalgleish.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/debradalgleish.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/debradalgleish.com\/blog\/wp-json\/wp\/v2\/comments?post=1088"}],"version-history":[{"count":4,"href":"https:\/\/debradalgleish.com\/blog\/wp-json\/wp\/v2\/posts\/1088\/revisions"}],"predecessor-version":[{"id":1094,"href":"https:\/\/debradalgleish.com\/blog\/wp-json\/wp\/v2\/posts\/1088\/revisions\/1094"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/debradalgleish.com\/blog\/wp-json\/wp\/v2\/media\/1082"}],"wp:attachment":[{"href":"https:\/\/debradalgleish.com\/blog\/wp-json\/wp\/v2\/media?parent=1088"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/debradalgleish.com\/blog\/wp-json\/wp\/v2\/categories?post=1088"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/debradalgleish.com\/blog\/wp-json\/wp\/v2\/tags?post=1088"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}