Fixes (1)
- Restore enhanced standard.site Bluesky link cards by attaching document and publication references correctly
Autoblue now supports standard.site records, so posts shared to Bluesky can also be published as site.standard.document records.
In addition, you can now enable Autoblue for other post types besides post, including custom post types!

Autoblue is now officially out of beta, so the version number has been upped to v1!
You don’t need to do anything extra for this, adding an account from a self-hosted PDS works the same way as adding a regular account.
Autoblue has a new autoblue/share_message filter that can be used to modify the message when sharing to Bluesky using PHP.
For example, you could use it to append all post tags as hashtags to the share message:
add_filter(
'autoblue/share_message',
function ( $message, $post_id ) {
$tags = wp_get_post_tags( $post_id, [ 'fields' => 'names' ] );
if ( ! empty( $tags ) ) {
$tags = array_map( fn( $tag ) => '#' . sanitize_title( $tag ), $tags );
$message .= ' ' . implode( ' ', $tags );
}
return $message;
},
10,
2
);Initial release.