Title: Featured Video Plus
Author: Alex
Published: <strong>Désémber 13, 2012</strong>
Last modified: Désémber 17, 2016

---

Search plugins

![](https://ps.w.org/featured-video-plus/assets/banner-772x250.jpg?rev=1170997)

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of WordPress.

![](https://ps.w.org/featured-video-plus/assets/icon.svg?rev=1170997)

# Featured Video Plus

 By [Alex](https://profiles.wordpress.org/ahoereth/)

[Download](https://downloads.wordpress.org/plugin/featured-video-plus.2.3.3.zip)

 * [Details](https://su.wordpress.org/plugins/featured-video-plus/#description)
 * [Reviews](https://su.wordpress.org/plugins/featured-video-plus/#reviews)
 *  [Installation](https://su.wordpress.org/plugins/featured-video-plus/#installation)
 * [Development](https://su.wordpress.org/plugins/featured-video-plus/#developers)

 [Support](https://wordpress.org/support/plugin/featured-video-plus/)

## Description

> A picture is worth a thousand words. How many words is a video worth?

Featured Videos work like Featured Images, just smoother: Paste a video URL into
the designated new box on the post edit screen and the video will be displayed in
place of a post image.

There are three ways to get the videos onto your page:

 1. **Automagically!** If your theme makes use of WordPress’ native [featured image functionality](https://codex.wordpress.org/Post_Thumbnails)
    you are set: Automatic insertion, lazy loading or lightbox overlays, its your choice.
    If this does not work you can either
 2. insert the `[featured-video-plus]`–**Shortcode** in your posts or
 3. manually make use of the **PHP-functions** in your theme’s source files.

For more details, check the [installation](https://wordpress.org/plugins/featured-video-plus/installation/)
page.

> **Theme compatibility**
>  Sadly many themes do not follow the WordPress standards
> and implement their own fancy functions for displaying featured images – those
> very likely break this plugin. Check out the [FAQ](https://wordpress.org/plugins/featured-video-plus/faq/).
> Another common problem are sliders: Videos, in general, do not like sliders at
> all.

See the plugin in action on [yrnxt.com](http://yrnxt.com/wordpress/featured-video-plus/).
There is a button in the sidebar to switch between the different featured video 
display modes: [Automatic](http://yrnxt.com/wordpress/featured-video-plus/?setfvpmode=replace),
[lazy](http://yrnxt.com/wordpress/featured-video-plus/?setfvpmode=dynamic) and [overlay](http://yrnxt.com/wordpress/featured-video-plus/?setfvpmode=overlay).

Besides **Local Videos** you can use videos from a whole lot of external providers
like **YouTube**, **Vimeo** and **Dailymotion**. **SoundCloud** and **Spotify** (
including playlists) are supported as well. Check the [WordPress Codex](https://codex.wordpress.org/Embeds#Okay.2C_So_What_Sites_Can_I_Embed_From.3F)
for a complete list. If some provider is not listed you can always just use an embed
code or whatever HTML you like.

After installing the plugin check your site’s _Media Settings_ (`Settings -> Media`
in the administration interface): The plugin adds quite some little helper options
there. Change to lazy or overlay mode, tweak video sizing, individualize the look
of the most prominent providers’ video players and turn on autoplay or video looping.
By default videos try to dynamically fit their parent containers width and adjust
their size responsively.

> **Support**
>  I do read all support questions in the [forums](https://wordpress.org/support/plugin/featured-video-plus)
> but cannot reply to all of them. The plugin is an unpaid side project and full
> support would require more time than I can invest for free for over 20k active
> installs. If you really need help, consider [buying me a cookie](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AD8UKMQW2DMM6)–
> best way to attract my attention and to support future enhancements.

## Screenshots

 * [[
 * A Featured Video in the Twenty Fifteen theme on [yrnxt.com](http://yrnxt.com/wordpress/featured-video-plus).
 * [[
 * Featured Video and Featured Image boxes on the post edit screen.
 * [[
 * Featured Video settings on the `Settings -> Media` administration screen.

## Installation

#### Installation

 1. Visit your WordPress Administration interface and go to `Plugins -> Add New`
 2. Search for `Featured Video Plus`, and click `Install Now` below the plugin’s name
 3. When the installation finished, click `Activate Plugin`

The plugin is ready to go. Now edit your posts and add video links to the `Featured
Video` box on the right! Plugin specific settings can be found under `Settings -
> Media`.

#### Theme integration

If the automatic integration fails you can always fallback to either using the shortcode
or adjusting your themes sourcecode manually:

**Shortcode**

    ```
    [featured-video-plus]
    [featured-video-plus width=300]
    ```

**PHP-functions**

    ```
    the_post_video( $size )
    has_post_video( $post_id )
    get_the_post_video( $post_id, $size )
    get_the_post_video_url( $post_id )
    get_the_post_video_image( $post_id )
    get_the_post_video_image_url( $post_id )
    ```

All parameters are optional. If no `$post_id` is given the current post’s ID will
be used. `$size` is either a string keyword (`thumbnail`, `medium`, `large` or `
full`) or a 2-item array representing width and height in pixels, e.g. `array(560,320)`.

When editing your theme’s sourcecode keep in mind that a future update through WordPress.
org might overwrite your changes. Consider creating a child theme to prevent that.

## FAQ

  Installation Instructions

#### Installation

 1. Visit your WordPress Administration interface and go to `Plugins -> Add New`
 2. Search for `Featured Video Plus`, and click `Install Now` below the plugin’s name
 3. When the installation finished, click `Activate Plugin`

The plugin is ready to go. Now edit your posts and add video links to the `Featured
Video` box on the right! Plugin specific settings can be found under `Settings -
> Media`.

#### Theme integration

If the automatic integration fails you can always fallback to either using the shortcode
or adjusting your themes sourcecode manually:

**Shortcode**

    ```
    [featured-video-plus]
    [featured-video-plus width=300]
    ```

**PHP-functions**

    ```
    the_post_video( $size )
    has_post_video( $post_id )
    get_the_post_video( $post_id, $size )
    get_the_post_video_url( $post_id )
    get_the_post_video_image( $post_id )
    get_the_post_video_image_url( $post_id )
    ```

All parameters are optional. If no `$post_id` is given the current post’s ID will
be used. `$size` is either a string keyword (`thumbnail`, `medium`, `large` or `
full`) or a 2-item array representing width and height in pixels, e.g. `array(560,320)`.

When editing your theme’s sourcecode keep in mind that a future update through WordPress.
org might overwrite your changes. Consider creating a child theme to prevent that.

  Why do I just get text back after adding an URL to the Featured Video input?

If the plugin just returns text instead of the actual video the pasted url is probably
not valid or not from a valid video provider. Try inserting the raw embed code instead
or [check the docs](https://codex.wordpress.org/Embeds#Okay.2C_So_What_Sites_Can_I_Embed_From.3F)
to see which providers are supported.

  How do I use my local videos?

Click the small media icon in the Featured Video input box on the post edit screen
and upload your video or choose it from the media library. WordPress does not support
all formats tho, [check this table](http://www.mediaelementjs.com/#devices) for 
details.

  Why do I not see a featured video or image on the frontend at all?

For the videos to be automatically displayed you need to define a Featured Image.
Depending on your featured video settings this image will never be shown if a video
is set. If your theme does not support featured images the plugin also has no chance
of working out of the box.

  Why does the frontend still display the featured image although I added a featured
video to the post?

Sadly not all themes work out of the box. Themes need to make use of WordPress’ 
native [Post Thumbnail](https://codex.wordpress.org/Post_Thumbnails) functionality(
specifically `get_the_post_thumbnail()` and/or `the_post_thumbnail()`) – these functions
are where the plugin can hook into the theme and modify what is displayed. Consider
contacting the theme’s creator or modifying the theme’s sourcecode in order to add
the plugin’s [PHP-functions](https://wordpress.org/plugins/featured-video-plus/installation/).

  How can I make the videos fit into their designated space in my theme?

Take a look at your media settings and try using a fixed width instead of responsive
sizing.

  How can I make the plugin work with infinite scrolling?

While the plugin tries to handle infinite scrolling automatically, it does not work
for all configurations. In those cases you will want to manually call `initFeaturedVideoPlus()`
using JavaScript everytime new articles have been loaded. Most infinite scroll plugins
should have some kind of post-load hook.

  Can I help translating the plugin?

Yes, please! Check out the official [Featured Video Plus Translation Project](https://translate.wordpress.org/projects/wp-plugins/featured-video-plus).

## Reviews

![](https://secure.gravatar.com/avatar/48f6ee07a4a35fece3c4523ffd406172806fc0f8d02f342b79aeaf37e56b4edc?
s=60&d=retro&r=g)

### 󠀁[One of the best video plugin for posts](https://wordpress.org/support/topic/one-of-the-best-video-plugin-for-posts/)󠁿

 [ishainfo](https://profiles.wordpress.org/ishainfo/) Pébruari 20, 2025

I can’t believe it’s already been five years since I started using the Featured 
Video Plus plugin! This tool has completely transformed the way I present content
on my websites. The ease of adding featured videos has not only enhanced user engagement
but also made my sites look so much more professional. I truly appreciate the developer
for offering this amazing plugin for free! It’s a game-changer for anyone looking
to spice up their site with multimedia. If you haven’t tried it yet, you’re missing
out on a fantastic resource!

![](https://secure.gravatar.com/avatar/1122c2edf05eddc340de1115a8873634cbc19917ac89469b8f2777b24921c811?
s=60&d=retro&r=g)

### 󠀁[Great Plugin but not longer Supported because of PHP7.4 Switch](https://wordpress.org/support/topic/great-plugin-but-not-longer-supported-because-of-php7-4-switch/)󠁿

 [klpmgg](https://profiles.wordpress.org/klpmgg/) Pébruari 16, 2023 1 reply

Hello Guy´s Can you please update the obsolete code to a newer version, since Wordpress
and also the website hosters in Germany don’t provide longer support for Php7.4,
you need to update the code to PHP8.0-PHP8.1, then it will work great again ! Please
do this for us, we have sooo many youtube videos embedded with this plugin and run
out of time to use Php7.4. This means that our hoster will end support in March.
You need to customize this plugin please – it was the only thing that ever worked
perfectly! great work – thank you soo much for your work!

![](https://secure.gravatar.com/avatar/ac81eaa02ecae8df4edc1a1811b3a6508f1b31e729f9808ddbf7c66eee9ec27e?
s=60&d=retro&r=g)

### 󠀁[Very useful](https://wordpress.org/support/topic/very-useful-3183/)󠁿

 [shashwathi](https://profiles.wordpress.org/shashwathi/) Januari 20, 2023

Very useful

![](https://secure.gravatar.com/avatar/118b9b0026960b4740a235b849b6eebbcc70b9d6fb601da9fea3d14740457de2?
s=60&d=retro&r=g)

### 󠀁[Still working!](https://wordpress.org/support/topic/still-working-95/)󠁿

 [dwlorimer](https://profiles.wordpress.org/dwlorimer/) Juli 6, 2020

This plugin still works for me on WP 5.4.2. So easy. Worked out of the box, except
for a couple theme css adjustments I had to make.

![](https://secure.gravatar.com/avatar/3467afc0ebe36f9d73ad2daa33cf94f5deaa0c909f88d7d7d4ad9cf3f3757371?
s=60&d=retro&r=g)

### 󠀁[Works great!](https://wordpress.org/support/topic/works-great-6646/)󠁿

 [ajiaim](https://profiles.wordpress.org/ajiaim/) April 13, 2020

I was ready to pay for a plugin that does this, I’m so glad I came across this! 
Old but still works perfectly!

![](https://secure.gravatar.com/avatar/9fdc3a6381194f93141c7a31bc4f4e2e1cce3bf54f3fd6fc095db532596cd630?
s=60&d=retro&r=g)

### 󠀁[Working! Holly Crap!?](https://wordpress.org/support/topic/working-holly-crap/)󠁿

 [Duke Snoogens](https://profiles.wordpress.org/mikeloucas/) April 11, 2020

So far so good! I said it hasn’t been update in 3 major releases, but so far its
working for me (v5.4). I tried others and they didn’t support Vimeo formats nor 
could I link them externally. So far I love this plug-in. Four stars because It 
auto plays in single posts (or did i miss something?); would to control that, but
F it this thing still rocks! Does a butternut cookie suffice? 🙂

 [ Read all 80 reviews ](https://wordpress.org/support/plugin/featured-video-plus/reviews/)

## Contributors & Developers

“Featured Video Plus” is open source software. The following people have contributed
to this plugin.

Contributors

 *   [ Alex ](https://profiles.wordpress.org/ahoereth/)

“Featured Video Plus” has been translated into 2 locales. Thank you to [the translators](https://translate.wordpress.org/projects/wp-plugins/featured-video-plus/contributors)
for their contributions.

[Translate “Featured Video Plus” into your language.](https://translate.wordpress.org/projects/wp-plugins/featured-video-plus)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/featured-video-plus/),
check out the [SVN repository](https://plugins.svn.wordpress.org/featured-video-plus/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/featured-video-plus/)
by [RSS](https://plugins.trac.wordpress.org/log/featured-video-plus/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 2.3.3: 2016-12-17

 * Fix frontend ajax requests. ([*](https://wordpress.org/support/topic/video-overlay-does-not-work/))

#### 2.3.1 & 2.3.2: 2016-12-16

 * Fix for _illegal video_ message when using oEmbed. ([*](https://wordpress.org/support/topic/illegal-warning-displays-on-youtube-videos-2/),
   [*](https://wordpress.org/support/topic/illegal-warning-displays-on-youtube-videos/))
 * Fix for _are you sure_ error on post creation. ([*](https://wordpress.org/support/topic/latest-update-causing-error/),
   [*](https://wordpress.org/support/topic/error-are-you-sure-you-want-to-do-this-3/))

#### 2.3.0: 2016-12-15

 * Now compatible with [Video SEO](https://yoast.com/wordpress/plugins/video-seo/)!(
   [*](https://wordpress.org/support/topic/compatibility-with-video-seo), [*](https://wordpress.org/support/topic/video-seo-featured-video-plus-compatability),
   [*](https://wordpress.org/support/topic/fantastic-a-must-have-for-all-video-sites))
 * Fix AJAX vulnerability reported by [@jamesgol](https://github.com/jamesgol).
 * **Disallow raw embeds (`iframe`, `object`, `embed`) by default for new videos—
   can be enabled in the settings.** Could have been misused if somebody had gained
   access to an editor account beforehand. Reported by [@jamesgol](https://github.com/jamesgol).
 * “Single” now actually means single posts **and** pages. ([*](https://wordpress.org/support/topic/is_singular),
   [*](https://github.com/ahoereth/featured-video-plus/issues/7))
 * Fix some problem with fixed size specifications. ([*](https://wordpress.org/support/topic/modifying-size-has-no-effect),
   [*](https://wordpress.org/support/topic/not-able-to-change-size-of-video), [*](https://wordpress.org/support/topic/width-function-on-featured-video-plus-width560-is-not-working),
   [*](https://wordpress.org/support/topic/the_post_video-is-the-wrong-size))

#### 2.2.3: 2016-07-19

 * Fix for bad iframe src attributes. ([*](https://wordpress.org/support/topic/fix-for-wordpress-442-for-youtube-video-error))
 * Fix a problem with image type detection. ([*](https://wordpress.org/support/topic/warning-and-no-featured-image-generated?replies=3),
   [*](https://wordpress.org/support/topic/plugin-is-not-supporting-by-wordpress-44))

#### 2.2.2: 2015-09-15

 * Fix for not correctly hidden preload images. ([*](https://wordpress.org/support/topic/your-aplication-is-not-working-right-on-wordpress-43–es_es),
   [*](https://wordpress.org/support/topic/play-and-load-images-appended-to-body-since-update-to-221),
   [*](https://wordpress.org/support/topic/big-black-play-triangle-under-video))
 * Replace features videos more reliably on AJAX requests. ([*](https://wordpress.org/support/topic/video-embedding-issue-when-using-infinite-scroll))

#### 2.2.1: 2015-09-08

 * Now compatible with infinite scroll! ([*](https://wordpress.org/support/topic/vimeo-thrumbnails-not-work),
   [*](https://wordpress.org/support/topic/video-embedding-issue-when-using-infinite-scroll),
   [*](https://wordpress.org/support/topic/featured-video-plus-jetpack-infinite-scroll-video-width-problem))
 * Fix bad overlay sizing when loading from cache. ([*](https://wordpress.org/support/topic/video-shrinking-on-2nd-play))
 * Fix local video responsiveness in recent WordPress videos.
 * The `has_post_video` function is now pluggable.
 * The `get_the_post_video_url` function post id argument is now optional ([*](https://wordpress.org/support/topic/video-url)).

#### 2.2.0: 2015-07-20

 * Shortcodes can now be used as featured content (e.g. `[gallery]`).
 * Added fine tuned autoplay options.
 * New option for hiding YouTube video annotations. ([*](https://wordpress.org/support/topic/add-feature-to-hide-youtube-screen-annotation))
 * Expose a JS function to manually re-initialize the plugin’s JS behavior like 
   responsive sizing and overlays. Specifically interesting when using FVP in combination
   with a infinite scroll plugin. ([*](https://wordpress.org/support/topic/open-video-overlay-when-featured-image-is-clicked-in-loop))
 * Fetch high quality thumbnails for YouTube and Dailymotion. ([*](https://wordpress.org/support/topic/featured-image-size-42))
 * Fix bug which suppressed the removal of foreign featured images. ([*](https://wordpress.org/support/topic/cannot-remove-featured-image-if-a-featured-video-is-set))
 * Fix ‘undefined function exif_imagetype’ error. ([*](https://wordpress.org/support/topic/cant-add-featured-video-1),
   [*](https://wordpress.org/support/topic/infinite-spinning-wheel-all-previous-videos-not-working-anymore),
   [*](https://wordpress.org/support/topic/error-message-444))
 * Implement a workaround for a bug with iframes in Google Chrome, see [[0](https://code.google.com/p/chromium/issues/detail?id=395533)],[
   [1](https://code.google.com/p/chromium/issues/detail?id=395791)]. ([*](https://wordpress.org/support/topic/found-a-huge-critical-bug-videos-vanish-after-using-back))
 * Fix bug which resulted in a invisible video playing in the background when using
   autoplay and overlay mode. ([*](https://wordpress.org/support/topic/video-overlay-with-autoplay-causes-two-videos-to-play))

#### 2.1.2: 2015-06-16

 * Fix bug which resulted in missing featured images when a post did not have a 
   featured video. ([*](https://wordpress.org/support/topic/cookie-send-to-you-and-video-yes-image-no),
   [*](https://wordpress.org/support/topic/version-221-featured-image-not-diplayed))

#### 2.1.1: 2015-06-15

 * Fix play and loading featured image overlay for some themes. ([*](https://wordpress.org/support/topic/play-icon-missing))
 * Fix broken `remove featured image` link. ([*](https://wordpress.org/support/topic/cant-remove-featured-image-2),
   [*](https://wordpress.org/support/topic/version-210-conflict-with-wp-featured-image),
   [*](https://wordpress.org/support/topic/fvp-not-working-after-210-update))

#### 2.1.0: 2015-06-11

 * Display options are now chained using OR – if one of them holds, the replace 
   mode is used.
 * Added `always use replace mode when viewing single posts and pages` option, was
   implicitly true since 2.0.0. ([*](https://wordpress.org/support/topic/featured-video-overrides-featured-image))
 * Fixed undefined warnings when using `WP_DEBUG`. ([*](https://wordpress.org/support/topic/debug-error-16))
 * Fixed double-wrapped .post-thumbnails. ([*](https://wordpress.org/support/topic/video-no-longer-appearing))
 * Lazy loading a video no longer breaks other videos. ([*](https://wordpress.org/support/topic/blank-screen-after-the-video-is-played))

#### 2.0.3: 2015-06-01

 * Remove usage of PHP short array syntax in order to support PHP versions lower
   than 5.4 ([*](https://wordpress.org/support/topic/bug-on-version-201))

#### 2.0.2: 2015-06-01

 * Fixed undefined warnings when saving posts with fresh featured videos.

#### 2.0.0 & 2.0.1: 2015-06-01

 * **Requires WordPress 3.7 or higher now!** This reflects versions of WordPress
   which are “officially” [supported](https://codex.wordpress.org/Supported_Versions).
   The plugin will from now on try to stick to supporting all versions listed there.
 * Major code refactor which results in many bugs scrubbed.
 * Support for raw embed codes and [all WordPress core media providers](https://codex.wordpress.org/Embeds#Okay.2C_So_What_Sites_Can_I_Embed_From.3F).
 * Updated wp.org icon and cover.

#### 1.9.1: 2014-09-06

 * **Last update compatible all the way back to WordPress 3.2!**
 * You can now specify the ‘[end](https://developers.google.com/youtube/player_parameters#end)‘
   parameter for YouTube embeds ([*](https://wordpress.org/support/topic/how-to-specify-start-and-end-for-youtube-videos))
 * Added option for only displaying videos on single posts/pages ([*](https://wordpress.org/support/topic/i-need-to-only-change-the-featured-images-not-the-thumbnails),
   [*](https://wordpress.org/support/topic/video-thumbnails-with-link-to-post),[*](https://wordpress.org/support/topic/want-everything-of-fvp-other-than-feature-video-thumb))
 * Removed hardcoded http protocol for embeds [*](https://wordpress.org/support/topic/fix-for-videos-over-ssl)

#### 1.9: 2014-01-02

 * Replaced Video.js with MediaElement.js (ships with WordPress since 3.6 – **breaks
   local videos partially if you use an older WordPress version!**)
 * Added Spanish translations! Translation by [WebHostingHub.com](http://webhostinghub.com)
 * Updated FitVids.js to 1.0.3

#### 1.8: 2013-05-16

 * Video.js [4.0](http://blog.videojs.com/post/50021214078/video-js-4-0-now-available)
 * Customize the local video player
 * Better autoplay handling
 * Remove anchors wrapping videos
 * General bug fixes

#### 1.7.1: 2013-04-30

 * Fixed manual usage option ([*](https://wordpress.org/support/topic/lightbox-video-on-featured-image-click))
 * Added featured image mouse over effect for featured video AJAX usage

#### 1.7: 2013-04-30

 * Added functionality to display featured video in an lightbox using AJAX on featured
   image click ([*](http://www.web2feel.com/garvan/))
 * Added functionality to replace featured image with featured video on demand when
   image is clicked using AJAX ([*](https://wordpress.org/support/topic/lightbox-video-on-featured-image-click))
 * `get_the_post_video_url` has a new second parameter (boolean) to get the fallback
   video’s URL ([*](https://wordpress.org/support/topic/fallback-video-url))
 * Tested with WordPress 3.6

#### 1.6.1: 2013-04-18

 * Fixed removing featured image when no featured video is specified ([*](https://wordpress.org/support/topic/featured-image-doesnt-save))

#### 1.6: 2013-04-16

 * Added `get_the_post_video_url($post_id)` PHP-Function
 * Added YouTube `enablejsapi` parameter with `playerapiid` (`fvpid + $post_id`)
   and iframe id ([*](https://wordpress.org/support/topic/need-filter-for-iframe-and-embed-code-manipulation))
 * Added a filter for `get_the_post_video`: `get_the_post_video_filter` ([*](https://wordpress.org/support/topic/need-filter-for-iframe-and-embed-code-manipulation))
 * Added option for using the featured image as video thumbnail for local videos
 * Fixed local videoJS ([*](https://wordpress.org/support/topic/how-to-style-the-player-play-button-pause-button-etc))
 * Fixed auto width and height for the Dailymotion and videoJS players
 * Fixed YouTube videos for which the plugin cannot access the YouTube API ([*](https://wordpress.org/support/topic/link-appearing-red-in-featured-video-section))

#### 1.5.1: 2013-03-27

 * Fixed Featured Video box on new-post.php
 * Enhanced Featured Image ajax behavior

#### 1.5: 2013-03-22

 * **AJAXified** the Featured Video box – just like Featured Images
 * Added options for a) disabling VideoJS JS/CSS, b) enabling VideoJS CDN and c)
   YouTube `wmode`
 * Plugin no longer breaks WP image editor ([*](https://wordpress.org/support/topic/breaks-image-scaling-shows-nan))

#### 1.4: 2013-03-15

 * **WP 3.5 Media Manager** seamless integrated
 * Time-links now available for YouTube and Dailymotion (append #t=1m2s)
 * New `autoplay` setting
 * Specify your Dailymotion Syndication Key
 * Added `get_the_post_video_image` & `get_the_post_video_image_url`
 * Local videos no longer break when domain changes or attachment is edited
 * Better Featured Image handling

#### 1.3: 2013-01-16

 * **Internationalization**: Added German translations
 * Added customizations for YouTube and Dailymotion
 * Revamped video sizing
 * Better error handling
 * Contextual help on media settings and post edit screen
 * LiveLeak (very experimental, they have no API)

#### 1.2: 2013-01-09

 * **Local Videos**: mp4, webm, ogg
 * More dynamic user interface
 * Minimized JS and CSS

#### 1.1: 2012-12-16

 * **Dailymotion**
 * Fixed YouTube time-links
 * Enhanced interaction of Featured Videos & Featured Images

#### 1.0: 2012-12-13

 * Release

## Meta

 *  Version **2.3.3**
 *  Last updated **8 years ago**
 *  Active installations **10.000+**
 *  WordPress version ** 3.7 or higher **
 *  Tested up to **4.7.33**
 *  Languages
 * [Dutch](https://nl.wordpress.org/plugins/featured-video-plus/), [English (US)](https://wordpress.org/plugins/featured-video-plus/),
   and [German](https://de.wordpress.org/plugins/featured-video-plus/).
 *  [Translate into your language](https://translate.wordpress.org/projects/wp-plugins/featured-video-plus)
 * Tags
 * [featured](https://su.wordpress.org/plugins/tags/featured/)[image](https://su.wordpress.org/plugins/tags/image/)
   [post](https://su.wordpress.org/plugins/tags/post/)[video](https://su.wordpress.org/plugins/tags/video/)
   [videos](https://su.wordpress.org/plugins/tags/videos/)
 *  [Advanced View](https://su.wordpress.org/plugins/featured-video-plus/advanced/)

## Ratings

 4.8 out of 5 stars.

 *  [  70 5-star reviews     ](https://wordpress.org/support/plugin/featured-video-plus/reviews/?filter=5)
 *  [  6 4-star reviews     ](https://wordpress.org/support/plugin/featured-video-plus/reviews/?filter=4)
 *  [  2 3-star reviews     ](https://wordpress.org/support/plugin/featured-video-plus/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/featured-video-plus/reviews/?filter=2)
 *  [  2 1-star reviews     ](https://wordpress.org/support/plugin/featured-video-plus/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/featured-video-plus/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/featured-video-plus/reviews/)

## Contributors

 *   [ Alex ](https://profiles.wordpress.org/ahoereth/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/featured-video-plus/)

## Donate

Would you like to support the advancement of this plugin?

 [ Donate to this plugin ](https://www.paypal.me/ahoereth)