Jan Boddez
Jan Boddez
Sorry for jumping in here like this, but, just FYI, here's my "solution": https://github.com/janboddez/aperture-docker-compose, which will kick off not two, but _seven_ containers (for Aperture itself, Watchtower, two databases, Beanstalk,...
(That said, it works, and I can really easily nuke my setup and bring it up again. At the same time, I'm fairly convinced that a separate WordPress install +...
Several "traditional" feed reader's support something similar, basically a per-source option to "fetch original posts." Very handy for feeds that are summary-only. > Another possible criteria: post has `summary` property...
After some trouble getting `ek` to run on my system, I've come up with a very simple way to expose my subscriptions using OPML: https://aperture.janboddez.tech/opml/1 (where `1` would be my...
> [T]hat only pertains to the categories in this case, right? Well, `content` is an array, too. You might wanna try just making that an HTML string and see if...
To encode the request body as JSON, you could probably: ``` $props = [ 'type' => 'h-entry', 'name' => 'Dit is test titel 4', 'content' => ['html' => $contentspul], 'category'...
Yeah, I noticed you're using DOMXPath there, which I might do as well. (Although DOMDocument doesn't always work as intended either, IMHO, it'll probably do in this case.) Still, the...
> Also should other WordPress taxonomies be allowed in here? Could you make this filterable? Like, you could either allow a list of taxonomies and _then_ try to fetch all...
Just now learning about the `'micropub_query'` filter, which may suffice. (Hoping, in fact, to use this to add `post-types` support.)
> @janboddez micropub_query is for querying the endpoint. You might want to look at micropub_post_type that allows you to set a custom post type for a Micropub post, based on...