by terriblestudio on WordPress.org
Social Bridge integrates WordPress with social media platforms and allows for comment synchronization.
Social Bridge is a WordPress plugin that connects your website with social media platforms, importing comments, likes, and shares from social posts to display them on your WordPress site.
In Settings → Social Bridge, you can configure how social media comments appear:
Social Bridge supports extensions for additional social media platforms. Developers can create add-on plugins that register new platform integrations using the provided API.
To create an extension:
Social_Bridge_Integrationsocial_bridge_integrations filterExample:
`php
// Register a new integration
function my_plugin_register_integration($integrations) {
$integrations[‘twitter’] = new My_Twitter_Integration();
return $integrations;
}
add_filter(‘social_bridge_integrations’, ‘my_plugin_register_integration’);
`
Social Bridge includes built-in integration for two social media platforms: Bluesky and Mastodon.
When enabled, Social Bridge interacts with the APIs of these platforms to retrieve data
from social media posts specified by authors on your site.
These integrations do not transmit any user data from your site to the third-party
platforms. However, they will use the authentication or API credentials you provide
in the Social Bridge settings to access the respective platforms.
The plugin will only communicate with these platforms when explicitly configured to
do so—such as when a post on your site includes social media links in the Social Interactions metabox.
After configured both in the plugin settings and on individual posts, Social Bridge will routinely
re-communicate with these platforms, in order to update its cache of social media comments, likes and shares.
You can review Bluesky’s privacy policies here
and here.
For Mastodon, each server maintains its own privacy policy. You should review the policy
of the specific server you use. As an example, the mastodon.social policy is
available here.