As part of my experimentation with Glide Apps (and by extension Google Sheets), I asked myself whether I could bring RSS data into my app. After a cursory Google search, I found that this is possible and very easy.
First off, Google Sheets makes it very easy to import RSS data (from any RSS feed) using the IMPORTFEED formula.
I refer to the Google Sheets documentation which says that the format of the IMPORTFEED formula is as follows:
IMPORTFEED(url, [query], [headers], [num_items])
Self-hosted WordPress sites, by default, provide an RSS feed at the /feed URL. If we were to use the official WordPress blog itself as an example you could find the RSS feed at:
https://wordpress.org/news/feed/
Based on the IMPORTFEED documentation, I want to request the following:
With that in mind, as a test, we can create a "News" tab in our Google Sheet. Then in the first cell add the following:
=IMPORTFEED("https://wordpress.org/news/feed/",,TRUE,5)
If all is well, you will receive data populated into your Google Sheet!
From there, you can setup your page as is typical in Glide.