Plugin info

Total downloads: 6,333
Active installs: 10
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 1/17/2012 (5097 days ago)
Added to WordPress: 7/20/2011 (14 years old)
Minimum WordPress version: 3.3.0
Tested up to WordPress version: 3.3.2
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 5097 days ago

20/100

Is WP Easy Embed abandoned?

Possibly abandoned (last update 5097 days ago).

Compatibility

Requires WordPress: 3.3.0
Tested up to: 3.3.2
Requires PHP: f

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

iframe
Rating 4.4/5 (56 reviews)Active installs 70,000
SmartVideo – Fast Video Player, Unlimited CDN, Vimeo Alternative
Rating 3.9/5 (16 reviews)Active installs 2,000
Responsive video embed
Rating 4.8/5 (5 reviews)Active installs 1,000
Simple Video Embedder
Rating 4.0/5 (1 reviews)Active installs 1,000
Video Dashboard
Rating 5.0/5 (6 reviews)Active installs 600

Description

WP Easy Embed allows you to embed videos, images and such via OEmbed service without manually editing the post (or page).
If content provider support additional fields they can be used (right now only vimeo ones are supported)

i18n

Plugin is ready for l10n, just a little note – there are two language files to translate,
languages/wp-easy-embed.pot and tinymce/langs/en.js

Plugin’s actions & filters

  • wp_easy_embed_config_{$config_key} filter
  • wp_easy_embed_init action. Runs before any button created
  • wp_easy_embed_additional_field_{$field_type} filter with $args parameter. See below.

Adding support for some provider additional fields

  • Add wp_easy_embed_config_supported_providers filter and push to passed array one more string – provider name (its domain name, please)
  • Add wp_easy_embed_config_supported_attributes_{$provider_name} filter and return assoc array in format, described in next section

Supported Atrributes Array Format

array(
    'Attribute name #1' => array('type' => 'text', 'value' => 'Default value', 'title' => 'Title for field #1')
    , 'Attribute name #2' => array('type' => 'checkbox', 'value' => [true|false], 'title' => 'Title for field #2')
    , 'Attribute name #3' => array('type'=>'select', 'values'=>array('value 1','value 2', ...), 'value' => 'Selected one', 'title' => 'Title for field #3')
    , 'Attribute name #4' => array('type' => 'your own type', 'value' => '', 'title' => 'Title for field #4')
)

To add type, add filter handler for wp_easy_embed_additional_field_{$field_type} and return html. Name is 1st parameter and config for that attribute is passed in second parameter

Installation

As usual, upload the folder of WP Easy Embed to the wordpress plugin directory, activate it then.

To alter settings of this plugin, go to Settings->WP Easy Embed.

Frequently Asked Questions

No FAQ available

Review feed

No reviews available

Screenshots

  1. You can preview how embed will look like before inserting shortcode into post

    You can preview how embed will look like before inserting shortcode into post

  2. Some providers support additional fields

    Some providers support additional fields

Changelog

1.2

  • multisite issues with activating and deactivating fixed
  • fixed style.css not applying to page
  • fixed js issue – removed ‘provider’ field from [embed] tag
  • reworked inner part even more

1.1

  • added additional oembed fields. right now only vimeo ones are supported
  • preview can be hided
  • reworked inner part a bit – reduced calls of get_option to one per instance
  • added loading animation for preview area

1.0

  • initial release