Hello,
I started testing the Feed plugin and it works great so far. I'm running into an issue though: by default, I don't want all of my pages to be included in my feed. This can be added to the frontmatter header to skip a particular page:
feed:
skip: true
However, I have over 200 pages (and that'll only increase as time goes on) that this will affect, so I'm looking for a faster way to do this. I could modify the plugin and change the logic so that if a page doesn't have skip explicitly set to false then it's automatically skipped, but I'd rather not modify the plugin if I can solve this an easier way.
Is there a way to automatically have all of my pages inherit a frontmatter header? I looked into blueprints, but this doesn't look like what I want. As far as I understand, blueprints only work for new pages created through Admin, which I don't use for creating or editing pages.
So, I'd like for this to be the default on all pages:
feed:
skip: true
And then I'd override it with this on the pages I'd like to include in the feed:
feed:
skip: false
Is this possible? Or is there an alternative that would solve this another way?