Description
Buoy Video Sync brings your YouTube channel to WordPress — import YouTube videos, playlists, and channel data as WordPress posts. Point it at a channel, choose what to sync and which post type to save it as, and Buoy Video Sync creates posts complete with titles, descriptions, thumbnails, view counts, and other YouTube metadata. Whether you want to embed a YouTube channel on your site, build a video gallery from synced posts, or mirror your uploads as blog content, the sync runs on your terms.
Every sync runs once, immediately after you save the rule — so you stay in control of when content is imported.
Features
- Sync from a YouTube channel
- Three sync actions: import new videos, import new playlists, or import the channel itself
- Save synced items as any post type you choose (Posts, or a custom post type)
- On-demand imports — each rule runs immediately when you save it, so you decide exactly when content is imported
- Quota estimation — see how many YouTube Data API units a sync will use before you run it
- Thumbnails shown as the featured image when none is set; channel profile pictures and banners are downloaded into your media library
- Sync history with the last-synced time and a per-rule error log
- Stores all YouTube data in standard post meta (
_buoyvs_*) for easy use in your theme or queries [buoy-video-sync]shortcode and three Gutenberg blocks (Field, Image, Embed) to display synced titles, descriptions, stats, thumbnails, and the YouTube player anywhere on your site — no code required- Delete channel — clear the configured channel and its sync history in one click when you want to start over or point at a different channel
- Optional “remove all data on uninstall” setting — your content stays unless you ask for it to be removed
Requires a Google API key with the YouTube Data API v3 enabled. Requests are made directly from your server to Google using your own key; no data passes through any third-party service.
Go further with Pro
Buoy Video Sync Pro adds power-user automation:
- Sync from unlimited YouTube channels
- Recurring schedules — hourly, daily, weekly, monthly, or a custom interval
- Update existing posts — refresh all metadata, or only the fields you choose
- Taxonomy assignment — file synced items into categories, tags, and custom taxonomy terms
- Field mapping — map YouTube fields (including each thumbnail size) to your own custom meta keys
- Filter conditions — sync only the items that match your rules
- Video protection — stop syncs from overwriting your manual edits
Learn more about Buoy Video Sync Pro
External services
Buoy Video Sync connects to the YouTube Data API v3, a service provided by Google, to fetch the public metadata it imports into WordPress.
What it is used for: retrieving public information about the YouTube channels, playlists, and videos you choose to sync — such as titles, descriptions, thumbnail URLs, view counts, publish dates, and channel/playlist/video IDs.
What data is sent and when: requests are made only when you save a channel, run a sync, or use the pre-sync quota estimate. Each request is sent directly from your own server to Google’s API endpoint (https://www.googleapis.com/youtube/v3/) and includes the Google API key you provide and the channel, playlist, or video identifier being synced. No personal data about your site’s visitors or users is sent, and no data passes through any service operated by the plugin author or a third party.
Images: channel profile pictures and banners are downloaded from the URLs the YouTube Data API returns and stored locally in your media library. Video and playlist thumbnail URLs returned by the API point to YouTube’s own image host (i.ytimg.com) and are stored and referenced as-is, in the same way YouTube serves them — the plugin does not host, offload, or proxy any images from its author’s servers.
Video player: the optional Embed block and the [buoy-video-sync type="embed"] shortcode display YouTube’s own embedded player in an iframe pointed at https://www.youtube.com/embed/, the same way pasting a YouTube link into the block editor does via WordPress’s built-in oEmbed support. No plugin code or data is involved in loading the player — the visitor’s browser requests it directly from YouTube.
This service is provided by Google. By using it you agree to Google’s terms and privacy policy:
- YouTube API Services Terms of Service: https://developers.google.com/youtube/terms/api-services-terms-of-service
- Google Privacy Policy: https://policies.google.com/privacy
Using synced data on your site
Every synced video, playlist, and channel is a regular WordPress post, so you can already query and template it however you like. For everyone else, the [buoy-video-sync] shortcode and three Gutenberg blocks put the same data on the page without writing any code.
Shortcode
[buoy-video-sync id="123" field="title"]
[buoy-video-sync id="123" field="view_count"]
[buoy-video-sync id="123" field="thumbnail" size="maxres"]
[buoy-video-sync id="123" type="embed"]
id is the post ID of the synced video, playlist, or channel post. Available `field` values depend on the post: `title`, `description`, and, for videos, `video_url`, `published_date`, `duration`, `view_count`, `like_count`, `comment_count`; for playlists, `playlist_video_count`; for channels, `subscriber_count`, `video_count`. Image fields are `thumbnail` (video), `playlist_thumbnail`, `profile_photo`, and `banner_image` (channel).
Gutenberg blocks
Add a Video Sync Field, Video Sync Image, or Video Sync Embed block from the block inserter (search “Video Sync”). Each block reads from the post it’s placed on by default — drop an Embed block into a synced video post’s content and it plays that video — or pick a different post from the block’s settings panel.
For Developers
Buoy Video Sync fires action hooks after each item’s metadata is saved, so you can run your own code whenever a video, playlist, or channel is synced. Each hook fires on both the initial import and every re-sync, after all metadata has been written. The synced data is passed to the hook, so you can identify or filter items without making another API call.
buoyvs_video_synced
Fires after a video’s metadata is saved.
do_action( 'buoyvs_video_synced', int $post_id, array $video_data, string $source_type, int $source_id );
$post_id— the video post ID.$video_data— video data from the YouTube Data API (title, description, view_count, like_count, comment_count, video_id, and more).$source_type— how it was synced:channel,playlist, orvideo.$source_id— the source term ID the video was synced from.
buoyvs_playlist_synced
Fires after a playlist’s metadata is saved.
do_action( 'buoyvs_playlist_synced', int $post_id, array $playlist_data, string $channel_id );
$post_id— the playlist post ID.$playlist_data— playlist data from the YouTube Data API.$channel_id— the source channel ID the playlist belongs to.
buoyvs_channel_synced
Fires after a channel’s metadata is saved.
do_action( 'buoyvs_channel_synced', int $post_id, array $channel_data, string $channel_id );
$post_id— the channel post ID.$channel_data— channel data from the YouTube Data API.$channel_id— the YouTube channel ID.
Example
add_action( 'buoyvs_video_synced', function ( $post_id, $video_data ) {
// Runs each time a video is synced.
error_log( sprintf( 'Synced video %d (%s)', $post_id, $video_data['video_id'] ?? '' ) );
}, 10, 2 );
buoyvs_metabox_tabs
Add your own tab to the video, playlist, or channel metabox on the post edit screen. Return an array of tabs, each with a slug, a label, and a render callback that echoes the panel’s content.
apply_filters( 'buoyvs_metabox_tabs', array $tabs, string $type, int $post_id );
$tabs— list of tabs to add. Each:[ 'slug' => string, 'label' => string, 'render' => callable( int $post_id ) ].$type— which metabox is rendering:video,playlist, orchannel.$post_id— the current post ID.
Example — add a tab only to the video metabox:
add_filter( 'buoyvs_metabox_tabs', function ( $tabs, $type, $post_id ) {
if ( 'video' !== $type ) {
return $tabs;
}
$tabs[] = array(
'slug' => 'my_tab',
'label' => 'My Tab',
'render' => function ( $post_id ) {
echo '<p>Custom content for post ' . (int) $post_id . '</p>';
},
);
return $tabs;
}, 10, 3 );
Screenshots






Blocks
This plugin provides 3 blocks.
- Video Sync Image Display a synced video thumbnail, playlist thumbnail, or channel image.
- Video Sync Embed Embed a synced video's YouTube player.
- Video Sync Field Display a single field from a synced video, playlist, or channel.
Installation
- Upload the
buoy-video-syncfolder to the/wp-content/plugins/directory, or install it from Plugins Add New. - Activate the plugin through the Plugins screen in WordPress.
- Go to Buoy Video Sync Settings and enter your Google API key.
- Go to Buoy Video Sync Channels and add a YouTube channel.
- Add a sync rule to the channel — pick an action and a destination post type — then save to import.
Getting a Google API key
- Visit Google Cloud Console.
- Create a project and enable the YouTube Data API v3.
- Generate an API key under Credentials.
- Paste the key into Buoy Video Sync Settings.
FAQ
-
Does Buoy Video Sync upload video files to my site?
-
No. Buoy Video Sync imports metadata (title, description, thumbnail URL, view counts, and so on) and saves it in WordPress. The video files stay on YouTube. Channel profile pictures and banners are downloaded into your media library; video and playlist thumbnails are displayed from the URLs YouTube serves them at.
-
Where do synced items go?
-
You choose. Each sync rule has a destination post type, so videos, playlists, and channels are saved as the post type you select — Posts or any public custom post type.
-
How often does it sync?
-
Every rule runs once, immediately after you save it. To import again later — for example after publishing new videos — re-enable the rule and save, and it picks up anything new. Recurring schedules (hourly, daily, weekly, monthly, or custom) are available in Buoy Video Sync Pro.
-
Why do I need a Google API key?
-
YouTube data is fetched from the official YouTube Data API v3, which requires a key. The key is yours and stays on your server; Buoy Video Sync never sends your data to a third party.
-
How much API quota does a sync use?
-
Each API call costs 1 quota unit. Importing from a channel needs at least 2 calls (channel data plus playlist items), and roughly 1 more call per 50 videos for metadata. Google provides 10,000 free units per day. Buoy Video Sync shows an estimate before you run a sync.
-
Can I switch to syncing a different channel?
-
Yes. Edit the Channel field on the Channels page and save — the plugin resolves the new URL/@handle/ID and switches to it, keeping your existing sync rules attached to the new channel. To stop syncing entirely, use the Delete channel button at the bottom of the channel card, which also clears its sync history.
-
What happens to my data if I uninstall Buoy Video Sync?
-
By default your synced posts and settings are kept. If you want everything removed, enable Remove all Buoy Video Sync data when the plugin is deleted in Buoy Video Sync Settings before deleting the plugin.
Reviews
There are no reviews for this plugin.
Contributors & Developers
“Buoy Video Sync – Import YouTube Videos, Playlists & Channels as Posts” is open source software. The following people have contributed to this plugin.
ContributorsInterested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
3.1.2
- Fixed: Restored the “Copy shortcode” button on the video, playlist, and channel metaboxes — it was missing even though the
[buoy-video-sync]shortcode itself has always been a Free feature.
3.1.1
- Fixed: Added horizontal padding to the Pro upgrade banner so its content no longer touches the edges on narrow screens.
3.1.0
- New: Added a “Go further with Pro” section to the plugin description, a Pro mention in the “How often does it sync?” FAQ, and Free-vs-Pro links in the Help tabs on the Channels and Settings screens.
- New: Added disabled Pro feature previews (recurring schedules, taxonomy assignment, field mapping, and filter conditions) to the sync rule screen, the add-rule wizard, and the channel Settings tab, so Free users can see what Pro adds.
3.0.3
- Changed: the shortcode is now registered as
[buoy-video-sync]instead of[buoyvs_video_sync], and the unprefixed[video-sync]back-compat alias has been removed — WordPress.org plugin review requires every registered tag to use a unique, distinct name.
3.0.2
- Security: the block editor’s post-selector REST endpoint now checks read access to each returned post individually, instead of relying on a blanket
edit_postscheck — draft/private synced posts no longer leak titles to users who can’t otherwise read them. - Changed: the
[video-sync]shortcode is now registered as[buoyvs_video_sync]for uniqueness;[video-sync]still works as a back-compat alias.
3.0.0
- Changed: Renamed to Buoy Video Sync (previously WPBuoy Video Sync) per WordPress.org naming requirements — plugin slug, text domain, and internal identifiers updated accordingly.
2.8.1
- Fixed: The “Delete channel” button did nothing after confirming — the Save button’s
name="submit"attribute shadowed the form’s nativesubmit()method, so the form silently failed to send.
2.8.0
- New: “Delete channel” button on the Channels page — clears the configured channel and its sync history, so you can start over or switch to a different channel without manually resetting the plugin.
2.7.0
- New:
[video-sync]shortcode and three Gutenberg blocks (Field, Image, Embed) to display synced titles, descriptions, stats, thumbnails, and the YouTube player anywhere on your site. - Fixed: Uninstalling with “remove all data” enabled now also removes synced playlist posts (previously only videos and channels were detected).
2.6.0
- New: Channel profile pictures and banners are now downloaded into the media library and attached to the channel post, instead of being referenced from YouTube’s CDN.
- Improved: Uninstall now also removes the channel configuration, per-channel sync history, plugin transients, and — when the “remove all data” setting is enabled — all synced posts and their attachments.
- Improved: Internal code and documentation cleanup.
2.5.1
- Standardized internal code naming for consistency across WPBuoy plugins.
- Simplified the single-channel architecture and removed unused legacy code. No changes to features or settings.
2.4.0
- New:
buoyvs_metabox_tabsfilter for adding custom tabs to the video, playlist, and channel metaboxes.
2.3.0
- New: Action hooks fire after each video, playlist, and channel is synced —
buoyvs_video_synced,buoyvs_playlist_synced,buoyvs_channel_synced.
2.2.5
- Maintenance release.
2.2.4
- Fixed: The channel History badge now counts only unread sync errors and clears when you open the History tab.
2.2.3
- New: Option to use the YouTube thumbnail as the post featured image (enabled by default) — disable it to keep your own featured images.
- Fixed: Channel posts now reliably display their profile image (removed image sideloading that failed on extension-less YouTube CDN URLs).
- Improved: Documented the YouTube image CDN in the readme’s External services section, per WordPress.org review feedback.
2.2.2
- Improved: Added an “External services” section to the readme documenting the YouTube Data API v3 usage, in line with WordPress.org plugin guidelines.
2.2.1
- Fixed: Sync history status icons now render as inline SVG and no longer load an external font, removing the Google Fonts (Material Icons) dependency for full WordPress.org compliance.
2.2.0
- New: Paste a channel URL or @handle in the Channel field — Buoy Video Sync resolves it to the channel ID automatically (supports channel URLs, @handles, /user/ and /c/ URLs, and video links).
- Improved: The Settings page shows a generic “Settings saved.” notice and no longer re-validates the API key when it hasn’t changed.
2.1.0
- New: In-plugin Help tabs linking to the Buoy Video Sync knowledge base on every admin screen.
- Improved: WordPress.org coding-standards compliance — prepared SQL statements, output escaping, and translator comments.
- Improved: Tested up to WordPress 7.0.
2.0.0
- Sync new videos, new playlists, or channel data from a YouTube channel.
- Choose any post type as the destination for synced items.
- Run-once sync with a pre-sync API quota estimate.
- Thumbnail import with featured-image fallback.
- Per-rule sync history and error logging.
