Event Bridge for ActivityPub
Make your events more discoverable, expand your reach effortlessly while being independent of other (commercial) platforms, and be a part of the growing decentralized web (the Fediverse). With the Event Bridge for ActivityPub Plugin for WordPress, your events can be automatically followed, aggregated and displayed across decentralized platforms like Mastodon or Gancio, without any extra work. Forget the hassle of managing multiple social media accounts just to keep your audience informed. This plugin is not an event managing plugin but an add-on to popular event plugins. It extends their functionality to fully support the ActivityPub plugin. With the ActivityPub plugin people can follow your website directly and engage with your events just as they would on social media: liking, boosting and even commenting if you enable it. You retain full ownership of your content. By integrating into your existing setup, it ensures no extra work is needed while enhancing your events’ visibility across the web. Supported Event Plugins Full support (including importing events from the Fediverse): The Events Calendar VS Event List GatherPress Basic support (outgoing events): Events Manager WP Event Manager Eventin Modern Events Calendar Lite Event Organiser EventPrime – Events Calendar, Bookings and Tickets EventON – Events Calendar How It Works With the Event Bridge for ActivityPub WordPress plugin, sharing your events is effortless and automatic! Once you create an event on your WordPress site, it is seamlessly shared across the decentralized web using the ActivityPub protocol. Your events can be automatically delivered to platforms that fully support events, such as Mobilizon, Gancio, Friendica, Hubzilla, and Pleroma. These platforms create public event calendars by pulling in events from various sources, including your website. Any updates you make to your events are synced across these platforms—so you only need to manage your events on your own site, with no extra work required. Even platforms that don’t yet fully support events, like Mastodon, will still receive a detailed, well-composed summary of your event. The Event Federation plugin ensures that users from those platforms are provided with all important information about an event. Features for Your WordPress Events and the Fediverse ActivityPub-Enabled Event Sharing: Your WordPress events are now compatible with the Fediverse, using the ActivityStreams format. This means your events can be easily discovered and followed by users on platforms like Mastodon and other ActivityPub-compatible services. Automatic Event Summaries: When your event is shared on the Fediverse, platforms like Mastodon that don’t fully support events will display a brief HTML summary of key details — such as the event’s title, start time, and location. This ensures that even if someone can’t view the full event on their platform, they still get the important info at a glance, with a link to your WordPress event page. Advanced users can create custom summaries via a set of shortcodes. Improved Event Discoverability: Your custom event categories are mapped to a set of default categories used in the Fediverse, helping your events reach a wider audience. This improves the chances that users searching for similar events on other platforms will find yours. Event Reminders for Your Followers: Often, events are planned well in advance. To keep your followers informed right in time, you can set up reminders that are supposed to trigger the events showing up in their timelines right before the event starts. External Event Sources: This functionality is only available for a subset of the supported event plugins. It enables your WordPress site to act as a hub for displaying events from other ActivityPub profiles, aggregating them into a cohesive calendar view. Acknowledgement The development of this WordPress plugin was funded through the NGI0 Entrust Fund, a fund established by NLnet with financial support from the European Commission’s Next Generation Internet programme, under the aegis of Communications Networks, Content and Technology under grant agreement number 101069594. Contributing This plugin is free software, and contributions of all kinds are welcome! Whether it’s reporting issues, submitting improvements, or suggesting new features, your input helps make the plugin better for everyone. Please review our Contribution Guidelines to get started. The source code is hosted on Codeberg, where you can open issues and submit pull requests. Thank you for contributing!
Top keywords
- events27×3.87%
- event25×3.58%
- platforms10×1.43%
- wordpress8×1.15%
- support7×1.00%
- activitypub6×0.86%
- fediverse6×0.86%
- calendar5×0.72%
- events calendar4×0.57%
- fully4×0.57%
- fully support4×0.57%
- mastodon4×0.57%
FediBoost
FediBoost extends the ActivityPub plugin by automatically boosting your WordPress posts on your connected Mastodon accounts when they are published. When you publish a new post on your WordPress site, FediBoost will automatically boost (reblog) that post on your linked Mastodon account, helping increase visibility across the fediverse. Features: Automatic boosting of new posts to connected Mastodon accounts Seamless integration with the ActivityPub plugin No additional configuration required after setup Requirements: The ActivityPub plugin must be installed and configured A connected Mastodon account via ActivityPub Developer Hooks FediBoost provides several filters that allow developers to customize its behavior. All filters follow WordPress coding standards and can be added to your theme’s functions.php file or a custom plugin. fediboost_should_boost_post Control whether a specific post should be boosted. Return false to skip boosting for the given post. Default: true. Parameters: $should_boost (bool) — Whether the post should be boosted. $post (WP_Post) — The post object being published. Example: add_filter( 'fediboost_should_boost_post', function( $should_boost, $post ) { // Don't boost posts in the "internal" category. if ( has_category( 'internal', $post ) ) { return false; } return $should_boost; }, 10, 2 ); fediboost_boost_delay Delay in seconds after ActivityPub federation completes before the boost is executed. This delay is only used when the federation completion hook fires successfully. Default: 30. Parameters: $delay (int) — The delay in seconds. Example: add_filter( 'fediboost_boost_delay', function( $delay ) { // Wait 2 minutes after federation before boosting. return 120; } ); fediboost_fallback_delay Delay in seconds before a boost is executed when the ActivityPub federation completion hook does not fire. This acts as a safety net for older versions of the ActivityPub plugin that do not support the activitypub_outbox_processing_complete hook. If the federation hook fires first, the fallback is cancelled and fediboost_boost_delay is used instead. Default: 300 (5 minutes). Parameters: $delay (int) — The fallback delay in seconds. Example: add_filter( 'fediboost_fallback_delay', function( $delay ) { // Wait 10 minutes in the fallback path. return 600; } ); fediboost_manage_capability WordPress capability required to manage FediBoost settings. Default: ‘manage_options’. Note: a floor of ‘edit_others_posts’ is enforced regardless of this filter’s return value, so you cannot lower the requirement below that capability. Parameters: $capability (string) — The required capability. Example: add_filter( 'fediboost_manage_capability', function( $capability ) { // Allow editors to manage FediBoost settings. return 'edit_others_posts'; } ); fediboost_max_accounts Maximum number of connected Mastodon accounts. Default: 10. Parameters: $max (int) — The maximum number of accounts. Example: add_filter( 'fediboost_max_accounts', function( $max ) { // Allow up to 25 connected accounts. return 25; } ); External Services FediBoost connects to external Mastodon instances that you configure (e.g., mastodon.social). This communication is essential for the plugin to function and is initiated only with the instance you explicitly provide. During setup: FediBoost registers an OAuth application on your Mastodon instance and performs an authorization flow so it can act on your behalf. When a post is published: FediBoost searches for the post on your Mastodon instance and performs a reblog (boost) via the Mastodon API. Data sent to your Mastodon instance: Your instance URL OAuth authorization codes Search queries to locate your posts Reblog (boost) requests Data stored locally on your WordPress site: Encrypted OAuth tokens Your Mastodon username Your Mastodon instance URL Each Mastodon instance has its own privacy policy and terms of service. You can find a list of instances and their policies at joinmastodon.org/servers. This plugin does not send data to any third-party service other than the Mastodon instance(s) you explicitly configure.