Embeds

It’s super easy to embed videos, images, tweets, audio, and other content into your WordPress site.

Usage

To embed a video or another object into a post or page, place its URL into the content area. Make sure the URL is on its own line and not hyperlinked (clickable when viewing the post).

For example:

Check out this cool video:
http://www.youtube.com/watch?v=dQw4w9WgXcQ
That was a cool video.

WordPress will automatically turn the URL into a YouTube embed and provide a live preview in the visual editor.

Another option is to wrap the URL in the “embedShortcode.

// NOTE: Remove space between '[' and 'embed' when you try.
[ embed width="123" height="456"]http://www.youtube.com/watch?v=dQw4w9WgXcQ[/embed]

If WordPress fails to embed the URL, the post will contain a hyperlink to the URL.

Vai su ↑

oEmbed

The easy embedding feature is mostly powered by oEmbed, a protocol for site A (such as your blog) to ask site B (such as YouTube) for the HTML needed to embed content from site B.

oEmbed was designed to avoid the need to copy and paste HTML from the site hosting the media you wish to embed. It supports videos, images, text, and more.

Vai su ↑

Does This Work With Any URL?

No, not by default. WordPress will only embed URLs matching an internal whitelist. This is for security purposes.

Vai su ↑

Okay, So What Sites Can I Embed From?

You can use all of these:

ServiceEmbed TypeSince
Amazon Kindle instant previews VideosWordPress 4.9
AnimotoVideosWordPress 4.0
BlipVideosWordPress 2.9
CloudupVideos, Galleries, ImagesWordPress 4.4
CollegeHumorVideosWordPress 4.0
Crowdsignal Polls & SurveysWordPress 3.0
DailyMotionVideosWordPress 2.9
Facebookpost, activity, photo, video, media, question, noteWordPress 4.7
FlickrVideos & ImagesWordPress 2.9
FunnyOrDie.comVideosWordPress 3.0
GiphyAnimated GIFs WordPress 4.7
HuluVideosWordPress 2.9
ImgurImagesWordPress 3.9
InstagramImagesWordPress 3.5
IssuuDocumentsWordPress 4.0
KickstarterProjectsWordPress 4.2
Meetup.comVariousWordPress 3.9
MixcloudMusicWordPress 4.0
PhotobucketImagesWordPress 2.9
RedditPosts & CommentsWordPress 4.4
ReverbNationMusicWordPress 4.4
ScribdDocumentsWordPress 2.9
SlideSharePresentation slideshowsWordPress 3.5
SmugMugVariousWordPress 3.0
SoundCloudMusicWordPress 3.5
Speaker DeckPresentation slideshowsWordPress 4.4
SpotifyMusicWordPress 3.6
TEDVideosWordPress 4.0
TumblrVariousWordPress 4.2
TwitterTweet, profile, list, collection, likes, MomentWordPress 3.4
VideoPressVideosWordPress 4.4
VimeoVideosWordPress 2.9
VineVideosWordPress 4.1
WordPress plugin directoryPluginsWordPress 4.4
WordPress.tvVideosWordPress 2.9
YouTubeVideosWordPress 2.9

Notes

  • Twitter – older versions of WordPress have issues with https embeds, just remove the s from the https to fix.
  • YouTube – only public and “unlisted” videos and playlists – “private” videos will not embed.
  • Tumblr – only posts (name.tumblr.com/post/etc) are recognized, not standalone images (name.tumblr.com/image)

Vai su ↑

How Can I Add or Change Support For Websites?

Adding support for an additional website depends on whether the site supports oEmbed.

Vai su ↑

Adding Support For An oEmbed-Enabled Site

If a site supports oEmbed, you’ll want to call wp_oembed_add_provider() to add the site and URL format to the internal whitelist.

Vai su ↑

Adding Support For A Non-oEmbed Site

You’ll need to register a handler using wp_embed_register_handler() and provide a callback function that generates the HTML.

Vai su ↑

Removing Support for An oEmbed-Enabled Site

If you wish to remove an oEmbed-enabled provider, you’ll want to call wp_oembed_remove_provider.

Vai su ↑

What About oEmbed Discovery?

As of version 4.4, WordPress supports oEmbed discovery, but has severe limitations on what type of content can be embedded via non-whitelisted sites.

Specifically, the HTML and Video content is filtered to only allow links, blockquotes, and iframes, and these are additionally filtered to prevent insertion of malicious content. The HTML is then modified to be sandboxed and to have additional security restrictions placed on them as well.

However, if you feel you are knowledgeable enough to not require this level of safety, you can give unfiltered_html users (Administrators and Editors) the ability to embed from websites that have oEmbed discovery tags in their <head>.

The oEmbed discovery content for “link” and “photo” types is not quite so heavily filtered in this manner, however it is properly escaped for security and to prevent any malicious content from being displayed on the site.

Vai su ↑

External Resources

Vai su ↑

Changelog

  • 2.9 :
    • Introduction of the builtin Embeds support.
  • 3.0 :
    • Added: SmugMug, FunnyOrDie
  • 3.4 :
    • Added: Twitter
  • 3.5 :
  • 3.6 :
    • Added: Rdio, Spotify
  • 3.9 :
    • Removed: Qik (the service shutting down in April 2014)
  • 4.0 :
    • Major reworking of the preview code showing embeds within the editor wp.mce.views.
    • Added: CollegeHumor, Issuu, Mixcloud, YouTube playlists, TED talks
    • Removed: Viddler (removed due to the service shutting down their oEmbed endpoint)
  • 4.1 :
    • Added: Vine
  • 4.2 :
    • Added: Kickstarter, Tumblr
    • Removed: Revision3
  • 4.4 :
    • Added: ReverbNation, Cloudup, Reddit, SpeakerDeck, VideoPress
    • Removed: Blip
  • 4.4.1 :
    • Removed: Rdio (Service shut down)
  • 4.5 :
    • Added: Twitter Moment, collection
  • 4.7 :
    • Added: Twitter profile, list, likes
    • Added: Facebook post, activity, photo, video, media, question, note
  • 5.1 :
    • Renamed: PollDaddy service has been renamed to Crowdsignal