05/04/2018

The archive contains older posts which may no longer reflect my current views.

# On the subject of updated posts I noticed that any time I have updated a post it never makes it that section of Feedbin.

I found a thread on stackexchange which suggests adding the atom:updated element to the feed using the following code:

add_action( 'rss2_item', function() {   
printf(
'<atom:updated>%s</atom:updated>', get_post_modified_time( 'D, d M Y H:i:s +0000', true )
); }
);

The element is inserted into the feed with the correct time stamp so now I just need to do some testing.

– And this is an update.

– Looks like it may need the atom date format which in PHP is Y-m-dTH:i:sP

– That has worked!

# This is a final test to see if I can restrict which links webmentions are sent to:

Link 1

Link 2

Update: I think I’ve got it!