Open benharri opened 2 months ago
Publishing a post from the block editor sends out the posts correctly but does not update the saved link meta
Publishing via a micropub client like quill or indiepass correctly saves the URLs out of the log into the mf2 field.
Came up with this workaround for now, but I would like to get it to save on its own.
#!/bin/sh wp post meta get $1 syndication_log --format=json \ | jq -r '[.[] | .data.url?]' \ | wp post meta add $1 mf2_syndication --format=json
Publishing a post from the block editor sends out the posts correctly but does not update the saved link meta
Publishing via a micropub client like quill or indiepass correctly saves the URLs out of the log into the mf2 field.
Came up with this workaround for now, but I would like to get it to save on its own.