Version Description
Download this release
Release Info
Developer | pressshack |
Plugin | EmbedPress – Embed Google Docs, YouTube, Maps, Vimeo, Wistia Videos & Upload PDF, PPT in Gutenberg & Elementor |
Version | 2.0.2 |
Comparing to | |
See all releases |
Code changes from version 2.0.1 to 2.0.2
- EmbedPress/Core.php +10 -5
- EmbedPress/Plugins/Plugin.php +12 -5
- embedpress.php +1 -1
- includes.php +1 -1
- readme.txt +92 -78
EmbedPress/Core.php
CHANGED
@@ -163,7 +163,7 @@ class Core
|
|
163 |
}
|
164 |
|
165 |
// Add support for embeds on AMP pages
|
166 |
-
add_filter('pp_embed_parsed_content',
|
167 |
|
168 |
$this->loaderInstance->run();
|
169 |
}
|
@@ -369,10 +369,15 @@ class Core
|
|
369 |
*/
|
370 |
public function hookOnPaste($mceInit)
|
371 |
{
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
|
|
|
|
|
|
|
|
|
|
376 |
|
377 |
return $mceInit;
|
378 |
}
|
163 |
}
|
164 |
|
165 |
// Add support for embeds on AMP pages
|
166 |
+
add_filter('pp_embed_parsed_content', array('\EmbedPress\AMP\EmbedHandler', 'processParsedContent'), 10, 3);
|
167 |
|
168 |
$this->loaderInstance->run();
|
169 |
}
|
369 |
*/
|
370 |
public function hookOnPaste($mceInit)
|
371 |
{
|
372 |
+
$settings = self::getSettings();
|
373 |
+
|
374 |
+
if (isset($settings->enablePluginInAdmin) && $settings->enablePluginInAdmin) {
|
375 |
+
// We hook here because the onPaste is sometimes called after the content was already added to the editor.
|
376 |
+
// If you copy text from the editor and paste there, it will give no way to use a normal onPaste event hook
|
377 |
+
// to modify the input since it was already injected.
|
378 |
+
$mceInit['paste_preprocess'] = 'function (plugin, args) {EmbedPress.onPaste(plugin, args);}';
|
379 |
+
}
|
380 |
+
|
381 |
|
382 |
return $mceInit;
|
383 |
}
|
EmbedPress/Plugins/Plugin.php
CHANGED
@@ -308,16 +308,23 @@ abstract class Plugin
|
|
308 |
{
|
309 |
$pluginSlug = EMBEDPRESS_PLG_NAME .':'. static::SLUG;
|
310 |
|
311 |
-
$
|
312 |
-
'timeout'
|
313 |
-
'sslverify'
|
|
|
314 |
'body' => array(
|
315 |
'edd_action' => "activate_license",
|
316 |
'license' => $licenseKey,
|
317 |
-
'item_name' => "EmbedPress - ". static::NAME,
|
318 |
'url' => home_url()
|
319 |
)
|
320 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
321 |
|
322 |
if (is_wp_error($response) || 200 !== wp_remote_retrieve_response_code($response)) {
|
323 |
$errMessage = $response->get_error_message();
|
308 |
{
|
309 |
$pluginSlug = EMBEDPRESS_PLG_NAME .':'. static::SLUG;
|
310 |
|
311 |
+
$params = array(
|
312 |
+
'timeout' => 30,
|
313 |
+
'sslverify' => false,
|
314 |
+
'redirection' => 1,
|
315 |
'body' => array(
|
316 |
'edd_action' => "activate_license",
|
317 |
'license' => $licenseKey,
|
|
|
318 |
'url' => home_url()
|
319 |
)
|
320 |
+
);
|
321 |
+
if (defined(get_called_class() . '::EDD_ID')) {
|
322 |
+
$params['body']['item_id'] = static::EDD_ID;
|
323 |
+
} else {
|
324 |
+
$params['body']['item_name'] = "PublishPress ". static::NAME;
|
325 |
+
}
|
326 |
+
|
327 |
+
$response = wp_remote_post(EMBEDPRESS_LICENSES_API_URL, $params);
|
328 |
|
329 |
if (is_wp_error($response) || 200 !== wp_remote_retrieve_response_code($response)) {
|
330 |
$errMessage = $response->get_error_message();
|
embedpress.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
* @embedpress
|
13 |
* Plugin Name: PublishPress Embeds
|
14 |
* Plugin URI: https://pressshack.com/embedpress/
|
15 |
-
* Version: 2.0.
|
16 |
* Description: WordPress supports around 35 embed sources, but PublishPress Embeds adds over 40 more, including Facebook, Google Maps, Google Docs, UStream! Just use the URL!
|
17 |
* Author: PressShack
|
18 |
* Author URI: http://pressshack.com
|
12 |
* @embedpress
|
13 |
* Plugin Name: PublishPress Embeds
|
14 |
* Plugin URI: https://pressshack.com/embedpress/
|
15 |
+
* Version: 2.0.2
|
16 |
* Description: WordPress supports around 35 embed sources, but PublishPress Embeds adds over 40 more, including Facebook, Google Maps, Google Docs, UStream! Just use the URL!
|
17 |
* Author: PressShack
|
18 |
* Author URI: http://pressshack.com
|
includes.php
CHANGED
@@ -22,7 +22,7 @@ if (!defined('EMBEDPRESS_PLG_NAME')) {
|
|
22 |
}
|
23 |
|
24 |
if (!defined('EMBEDPRESS_PLG_VERSION')) {
|
25 |
-
define('EMBEDPRESS_PLG_VERSION', "2.0.
|
26 |
}
|
27 |
|
28 |
if (!defined('EMBEDPRESS_ROOT')) {
|
22 |
}
|
23 |
|
24 |
if (!defined('EMBEDPRESS_PLG_VERSION')) {
|
25 |
+
define('EMBEDPRESS_PLG_VERSION', "2.0.2");
|
26 |
}
|
27 |
|
28 |
if (!defined('EMBEDPRESS_ROOT')) {
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: PressShack, andergmartins
|
|
3 |
Tags: YouTube, Google, Facebook, Wistia, Vimeo
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 4.8
|
6 |
-
Stable tag: 2.0.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -27,118 +27,118 @@ Here are some of the most popular sites you can use with PublishPress Embeds:
|
|
27 |
|
28 |
The add-ons for PublishPress Embeds give you far more control over your videos. With these add-ons, your videos will be responsive. You can also customize the video display to match your site’s design. Other features include auto-play and looping. Click the links below to get a full listing of all the features the add-ons provide:
|
29 |
|
30 |
-
* [Click here to get more YouTube features](https://
|
31 |
-
* [Click here to get more Vimeo features](https://
|
32 |
-
* [Click here to get more Wistia features](https://
|
33 |
|
34 |
= GOOGLE DRIVE: DOCS, SHEETS, DRAWINGS, FORMS, SLIDES, MAPS =
|
35 |
|
36 |
Google Drive is an enormously popular service that has replaced Microsoft Office for many companies. Using Google Drives can bring your information to life, whether it’s stored in documents, maps, drawings, spreadsheets, or presentations. PublishPress Embeds supports all of these Google Drive options:
|
37 |
|
38 |
-
* [How to use Google Docs in WordPress](https://
|
39 |
-
* [How to use Google Forms in WordPress](https://
|
40 |
-
* [How to use Google Maps in WordPress ](https://
|
41 |
-
* [How to use Google Drawings in WordPress](https://
|
42 |
-
* [How to use Google Sheets in WordPress](https://
|
43 |
-
* [How to use Google Slides in WordPress](https://
|
44 |
|
45 |
= FACEBOOK POSTS AND VIDEOS =
|
46 |
|
47 |
With PublishPress Embeds, you can add Facebook Posts to WordPress, using just a URL. Facebook post embeds are possible, but they’re not easy to use via normal methods. PublishPress Embeds is different:
|
48 |
|
49 |
-
* [How to use Facebook embeds in WordPress](https://
|
50 |
|
51 |
= AUDIO: SPOTIFY, SOUNDCLOUD AND MIXCLOUD =
|
52 |
|
53 |
PublishPress Embeds supports all of these major options for audio on your WordPress site:
|
54 |
|
55 |
-
* [How to use Spotify in WordPress](https://
|
56 |
-
* [How to use MixCloud in WordPress](https://
|
57 |
-
* [How to use SoundCloud in WordPress](https://
|
58 |
|
59 |
Here are multiple other audio options supported by PublishPress Embeds:
|
60 |
|
61 |
-
* [How to use Shoudio in WordPress](https://
|
62 |
-
* [How to use HuffDuffer in WordPress](https://
|
63 |
-
* [How to use Chirbit in WordPress](https://
|
64 |
-
* [How to use Clyp in WordPress](https://
|
65 |
-
* [How to use ReverbNation in WordPress](https://
|
66 |
|
67 |
= PHOTOS: DEVIANTART, GIPHY, FLICK, IMGUR AND INSTAGRAM =
|
68 |
|
69 |
PublishPress Embeds supports most popular image-hosting sites, including Deviantart, Giphy, Imgur, Flick and Instagram:
|
70 |
|
71 |
-
* [How to use Deviantart in WordPress](https://
|
72 |
-
* [How to use Giphy in WordPress](https://
|
73 |
-
* [How to use Flickr in WordPress](https://
|
74 |
-
* [How to use Imgur in WordPress](https://
|
75 |
-
* [How to use Instagram in WordPress](https://
|
76 |
|
77 |
= CHARTS AND DIAGRAMS =
|
78 |
|
79 |
With PublishPress Embeds, you have a wide variety of options for adding charts and diagrams to your WordPress site. We already saw that PublishPress Embeds supports Google Drawings, but here are 5 more options for charts:
|
80 |
|
81 |
-
* [AmCharts embeds](https://
|
82 |
-
* [Cacoo embeds](https://
|
83 |
-
* [ChartBlocks embeds](https://
|
84 |
-
* [CircuitLab embeds](https://
|
85 |
-
* [Infogram embeds](https://
|
86 |
|
87 |
= OTHER VIDEO OPTIONS =
|
88 |
|
89 |
We’ve seen that PublishPress Embeds supports YouTube, Wistia and Vimeo, but PublishPress Embeds also supports around 20 more video sources:
|
90 |
|
91 |
-
* [Animoto embeds](https://
|
92 |
-
* [Bambuser embeds](https://
|
93 |
-
* [College Humor embeds](https://
|
94 |
-
* [Coub embeds](https://
|
95 |
-
* [Crowd Ranking embeds](https://
|
96 |
-
* [Cloudup embeds](https://
|
97 |
-
* [Daily Motion embeds](https://
|
98 |
-
* [Dotsub embeds](https://
|
99 |
-
* [Funny or Die embeds](https://
|
100 |
-
* [Hulu embeds](https://
|
101 |
-
* [Kickstarter embeds](https://
|
102 |
-
* [NFB embeds](https://
|
103 |
-
* [RuTube embeds](https://
|
104 |
-
* [Sapo Videos embeds](https://
|
105 |
-
* [TED embeds](https://
|
106 |
-
* [Ustream embeds](https://
|
107 |
-
* [Viddler embeds](https://
|
108 |
-
* [VideoJug embeds](https://
|
109 |
-
* [VideoPress embeds](https://
|
110 |
|
111 |
= OTHER SITES SUPPORTED BY EMBEDPRESS =
|
112 |
|
113 |
-
* [23hq embeds](https://
|
114 |
-
* [Daily Mile embeds](https://
|
115 |
-
* [GettyImages embeds](https://
|
116 |
-
* [Github Gist embeds](https://
|
117 |
-
* [Issuu embeds](https://
|
118 |
-
* [Meetup embeds](https://
|
119 |
-
* [MobyPicture embeds](https://
|
120 |
-
* [PhotoBucket embeds](https://
|
121 |
-
* [PollDaddy embeds](https://
|
122 |
-
* [Porfolium embeds](https://
|
123 |
-
* [Reddit embeds](https://
|
124 |
-
* [ReleaseWire embeds](https://
|
125 |
-
* [Scribd embeds](https://
|
126 |
-
* [ShortNote embeds](https://
|
127 |
-
* [Sketchfab embeds](https://
|
128 |
-
* [SlideShare embeds](https://
|
129 |
-
* [SmugMug embeds](https://
|
130 |
-
* [SpeakerDeck embeds](https://
|
131 |
|
132 |
= ALSO CHECK OUT THE PUBLISHPRESS PLUGIN =
|
133 |
|
134 |
-
If you like PublishPress Embeds, then consider checking out [PublishPress](https://
|
135 |
|
136 |
PublishPress is a plugin with several tools that help your team stay organized:
|
137 |
|
138 |
-
* Use the [Editorial Calendar](https://
|
139 |
-
* You can create [Comments](https://
|
140 |
-
* You can add [Metadata](https://
|
141 |
-
* Create [Custom Statuses](https://
|
142 |
|
143 |
= WORDPRESS TRAINING =
|
144 |
|
@@ -162,7 +162,7 @@ Activate the PublishPress Embeds plugin.
|
|
162 |
|
163 |
= Where Can I Get Support? =
|
164 |
|
165 |
-
You can ask for help via [the PublishPress contact form](https://
|
166 |
|
167 |
= Do I Need Coding Skills To Use PublishPress Embeds? =
|
168 |
|
@@ -182,27 +182,39 @@ Not at all. You can set up everything your team needs without any coding knowled
|
|
182 |
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
183 |
and this project adheres to [Semantic Versioning](http://semver.org/).
|
184 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
185 |
= [2.0.1] - 2017-10-16 =
|
186 |
|
187 |
-
*
|
|
|
188 |
* Fixed responsive support for Mixcloud embeds;
|
189 |
* Fixed scripts related to AMP avoiding to load them more than once;
|
190 |
* Fixed custom attributes for Reddit on AMP pages;
|
191 |
|
192 |
= [2.0.0] - 2017-08-02 =
|
193 |
|
194 |
-
*
|
|
|
195 |
* Renamed to PublishPress Embeds
|
196 |
* Changed minimum WP version to 4.5
|
197 |
|
198 |
-
*
|
|
|
199 |
* Fixed compatibility between Visual Composer and the modal window style;
|
200 |
* Fixed the modal window to edit embeds to recognize the responsive field correctly from the shortcode's params;
|
201 |
* Fixed color picker padding for "Clear" button, and hex color input field;
|
202 |
|
203 |
= [1.7.5] - 2017-06-21 =
|
204 |
|
205 |
-
*
|
|
|
206 |
* Fixes PHP warning: Cannot use object of type stdClass as array, for imgur
|
207 |
* Fixes PHP warning in the add-ons tab
|
208 |
* Fixes embed for urls matching google.co.*
|
@@ -211,13 +223,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
211 |
|
212 |
= [1.7.4] - 2017-05-18 =
|
213 |
|
214 |
-
*
|
|
|
215 |
* Fixed JS incompatiblity with some 3rd part plugins
|
216 |
* Fixed the Add-on link in the footer
|
217 |
* Fixed typos
|
218 |
* Fixed the "Hello Dolly" message in the Freemius opt-in dialog
|
219 |
|
220 |
-
*
|
|
|
221 |
* Updated the text in the readme file
|
222 |
* Updated the plugin name in the Freemius integration
|
223 |
* Updated banner image
|
3 |
Tags: YouTube, Google, Facebook, Wistia, Vimeo
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 4.8
|
6 |
+
Stable tag: 2.0.2
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
27 |
|
28 |
The add-ons for PublishPress Embeds give you far more control over your videos. With these add-ons, your videos will be responsive. You can also customize the video display to match your site’s design. Other features include auto-play and looping. Click the links below to get a full listing of all the features the add-ons provide:
|
29 |
|
30 |
+
* [Click here to get more YouTube features](https://embedpress.com/addons/embedpress-youtube/)
|
31 |
+
* [Click here to get more Vimeo features](https://embedpress.com/addons/embedpress-vimeo/)
|
32 |
+
* [Click here to get more Wistia features](https://embedpress.com/addons/embedpress-wistia/)
|
33 |
|
34 |
= GOOGLE DRIVE: DOCS, SHEETS, DRAWINGS, FORMS, SLIDES, MAPS =
|
35 |
|
36 |
Google Drive is an enormously popular service that has replaced Microsoft Office for many companies. Using Google Drives can bring your information to life, whether it’s stored in documents, maps, drawings, spreadsheets, or presentations. PublishPress Embeds supports all of these Google Drive options:
|
37 |
|
38 |
+
* [How to use Google Docs in WordPress](https://embedpress.com/docs/google-docs-embed-wordpress/)
|
39 |
+
* [How to use Google Forms in WordPress](https://embedpress.com/docs/google-forms-embed-wordpress/)
|
40 |
+
* [How to use Google Maps in WordPress ](https://embedpress.com/docs/google-maps-embed-wordpress/)
|
41 |
+
* [How to use Google Drawings in WordPress](https://embedpress.com/docs/google-drawings-embed-wordpress/)
|
42 |
+
* [How to use Google Sheets in WordPress](https://embedpress.com/docs/embed-google-sheets-wordpress/)
|
43 |
+
* [How to use Google Slides in WordPress](https://embedpress.com/docs/embed-google-slides-wordpress/)
|
44 |
|
45 |
= FACEBOOK POSTS AND VIDEOS =
|
46 |
|
47 |
With PublishPress Embeds, you can add Facebook Posts to WordPress, using just a URL. Facebook post embeds are possible, but they’re not easy to use via normal methods. PublishPress Embeds is different:
|
48 |
|
49 |
+
* [How to use Facebook embeds in WordPress](https://embedpress.com/docs/embed-facebook-posts-wordpress/)
|
50 |
|
51 |
= AUDIO: SPOTIFY, SOUNDCLOUD AND MIXCLOUD =
|
52 |
|
53 |
PublishPress Embeds supports all of these major options for audio on your WordPress site:
|
54 |
|
55 |
+
* [How to use Spotify in WordPress](https://embedpress.com/docs/embed-spotify-audios-wordpress/)
|
56 |
+
* [How to use MixCloud in WordPress](https://embedpress.com/docs/embed-mixcloud-audio-wordpress/)
|
57 |
+
* [How to use SoundCloud in WordPress](https://embedpress.com/docs/embed-soundcloud-audio-wordpress/)
|
58 |
|
59 |
Here are multiple other audio options supported by PublishPress Embeds:
|
60 |
|
61 |
+
* [How to use Shoudio in WordPress](https://embedpress.com/docs/embed-shoudio-audios-wordpress/)
|
62 |
+
* [How to use HuffDuffer in WordPress](https://embedpress.com/docs/embed-huffduffer-audios-wordpress/)
|
63 |
+
* [How to use Chirbit in WordPress](https://embedpress.com/docs/embed-chirbit-audio-wordpress/)
|
64 |
+
* [How to use Clyp in WordPress](https://embedpress.com/docs/embed-clypit-audio-wordpress/)
|
65 |
+
* [How to use ReverbNation in WordPress](https://embedpress.com/docs/embed-reverbnation-audio-wordpress/)
|
66 |
|
67 |
= PHOTOS: DEVIANTART, GIPHY, FLICK, IMGUR AND INSTAGRAM =
|
68 |
|
69 |
PublishPress Embeds supports most popular image-hosting sites, including Deviantart, Giphy, Imgur, Flick and Instagram:
|
70 |
|
71 |
+
* [How to use Deviantart in WordPress](https://embedpress.com/docs/embed-deviantart-image-wordpress/)
|
72 |
+
* [How to use Giphy in WordPress](https://embedpress.com/docs/embed-giphy-gifs-wordpress/)
|
73 |
+
* [How to use Flickr in WordPress](https://embedpress.com/docs/embed-flickr-image-wordpress/)
|
74 |
+
* [How to use Imgur in WordPress](https://embedpress.com/docs/embed-imgur-images-wordpress/)
|
75 |
+
* [How to use Instagram in WordPress](https://embedpress.com/docs/embed-instagram-wordpress/)
|
76 |
|
77 |
= CHARTS AND DIAGRAMS =
|
78 |
|
79 |
With PublishPress Embeds, you have a wide variety of options for adding charts and diagrams to your WordPress site. We already saw that PublishPress Embeds supports Google Drawings, but here are 5 more options for charts:
|
80 |
|
81 |
+
* [AmCharts embeds](https://embedpress.com/docs/embed-amcharts-wordpress/)
|
82 |
+
* [Cacoo embeds](https://embedpress.com/docs/embed-cacoo-charts-wordpress/)
|
83 |
+
* [ChartBlocks embeds](https://embedpress.com/docs/embed-chartblocks-charts-wordpress/)
|
84 |
+
* [CircuitLab embeds](https://embedpress.com/docs/embed-circuitlab-circuit-wordpress/)
|
85 |
+
* [Infogram embeds](https://embedpress.com/docs/embed-infogram-charts-wordpress/)
|
86 |
|
87 |
= OTHER VIDEO OPTIONS =
|
88 |
|
89 |
We’ve seen that PublishPress Embeds supports YouTube, Wistia and Vimeo, but PublishPress Embeds also supports around 20 more video sources:
|
90 |
|
91 |
+
* [Animoto embeds](https://embedpress.com/docs/embed-animoto-videos-wordpress/)
|
92 |
+
* [Bambuser embeds](https://embedpress.com/docs/embed-bambuser-videos-wordpress/)
|
93 |
+
* [College Humor embeds](https://embedpress.com/docs/embed-collegehumor-videos-wordpress/)
|
94 |
+
* [Coub embeds](https://embedpress.com/docs/embed-coub-videos-iwordpress/)
|
95 |
+
* [Crowd Ranking embeds](https://embedpress.com/docs/embed-crowdranking-polls-wordpress/)
|
96 |
+
* [Cloudup embeds](https://embedpress.com/docs/embed-cloudup-videos-images-or-audios-wordpress/)
|
97 |
+
* [Daily Motion embeds](https://embedpress.com/docs/embed-dailymotion-videos-wordpress/)
|
98 |
+
* [Dotsub embeds](https://embedpress.com/docs/embed-dotsub-videos-wordpress/)
|
99 |
+
* [Funny or Die embeds](https://embedpress.com/docs/embed-funnyordie-videos-wordpress/)
|
100 |
+
* [Hulu embeds](https://embedpress.com/docs/embed-hulu-videos-wordpress/)
|
101 |
+
* [Kickstarter embeds](https://embedpress.com/docs/embed-kickstarter-videos-wordpress/)
|
102 |
+
* [NFB embeds](https://embedpress.com/docs/embed-nfb-videos-wordpress/)
|
103 |
+
* [RuTube embeds](https://embedpress.com/docs/embed-rutube-videos-wordpress/)
|
104 |
+
* [Sapo Videos embeds](https://embedpress.com/docs/embed-sapo-videos-wordpress/)
|
105 |
+
* [TED embeds](https://embedpress.com/docs/embed-ted-videos-wordpress/)
|
106 |
+
* [Ustream embeds](https://embedpress.com/docs/embed-ustream-videos-wordpress/)
|
107 |
+
* [Viddler embeds](https://embedpress.com/docs/embed-viddler-videos-wordpress/)
|
108 |
+
* [VideoJug embeds](https://embedpress.com/docs/embed-videojug-videos-wordpress/)
|
109 |
+
* [VideoPress embeds](https://embedpress.com/docs/embed-videopress-videos-wordpress/)
|
110 |
|
111 |
= OTHER SITES SUPPORTED BY EMBEDPRESS =
|
112 |
|
113 |
+
* [23hq embeds](https://embedpress.com/docs/embed-23hq-photos-wordpress/) (Images)
|
114 |
+
* [Daily Mile embeds](https://embedpress.com/docs/embed-dailymile-activity-wordpress/) (Activity)
|
115 |
+
* [GettyImages embeds](https://embedpress.com/docs/embed-getty-images-wordpress/) (Images)
|
116 |
+
* [Github Gist embeds](https://embedpress.com/docs/embed-github-gist-snippets-wordpress/) (Code)
|
117 |
+
* [Issuu embeds](https://embedpress.com/docs/embed-issuu-documents-wordpress/) (Documents)
|
118 |
+
* [Meetup embeds](https://embedpress.com/docs/embed-meetup-groups-events-wordpress/) (Groups, Events)
|
119 |
+
* [MobyPicture embeds](https://embedpress.com/docs/embed-mobypicture-photos-wordpress/) (Image)
|
120 |
+
* [PhotoBucket embeds](https://embedpress.com/docs/embed-photobucket-images-wordpress/) (Images)
|
121 |
+
* [PollDaddy embeds](https://embedpress.com/docs/polldaddy-embed-wordpress/) (Polls, Surveys, Quizzes)
|
122 |
+
* [Porfolium embeds](https://embedpress.com/docs/embed-portfolium-projects-wordpress/) (Projects)
|
123 |
+
* [Reddit embeds](https://embedpress.com/docs/embed-reddit-post-wordpress/) (Posts, Comments)
|
124 |
+
* [ReleaseWire embeds](https://embedpress.com/docs/embed-releasewire-press-releases-wordpress/) (Press releases)
|
125 |
+
* [Scribd embeds](https://embedpress.com/docs/embed-scribd-document-wordpress/) (Documents)
|
126 |
+
* [ShortNote embeds](https://embedpress.com/docs/embed-shortnote-notes-wordpress/) (Notes in Japanese)
|
127 |
+
* [Sketchfab embeds](https://embedpress.com/docs/embed-sketchfab-drawings-wordpress/) (Drawings)
|
128 |
+
* [SlideShare embeds](https://embedpress.com/docs/embed-slideshare-presentations-wordpress/) (Presentations)
|
129 |
+
* [SmugMug embeds](https://embedpress.com/docs/embed-smugmug-images-wordpress/) (Images)
|
130 |
+
* [SpeakerDeck embeds](https://embedpress.com/docs/embed-speakerdeck-presentations-wordpress/) (Presentations)
|
131 |
|
132 |
= ALSO CHECK OUT THE PUBLISHPRESS PLUGIN =
|
133 |
|
134 |
+
If you like PublishPress Embeds, then consider checking out [PublishPress](https://publishpress.com/). The PublishPress plugin is essential for any WordPress site with multiple writers.
|
135 |
|
136 |
PublishPress is a plugin with several tools that help your team stay organized:
|
137 |
|
138 |
+
* Use the [Editorial Calendar](https://publishpress.com/docs/calendar/) and [Content Overview](https://publishpress.com/docs/calendar/) to get a clear picture of all your planned and published content.
|
139 |
+
* You can create [Comments](https://publishpress.com/docs/editorial-comments/) and [Notifications](https://publishpress.com/docs/notifications/) to leave feedback and keep your team in the loop.
|
140 |
+
* You can add [Metadata](https://publishpress.com/docs/editorial-metadata/) to give your team extra information about each post.
|
141 |
+
* Create [Custom Statuses](https://publishpress.com/docs/custom-statuses/) so that WordPress matches your team’s workflow.
|
142 |
|
143 |
= WORDPRESS TRAINING =
|
144 |
|
162 |
|
163 |
= Where Can I Get Support? =
|
164 |
|
165 |
+
You can ask for help via [the PublishPress contact form](https://embedpress.com/contact/).
|
166 |
|
167 |
= Do I Need Coding Skills To Use PublishPress Embeds? =
|
168 |
|
182 |
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
183 |
and this project adheres to [Semantic Versioning](http://semver.org/).
|
184 |
|
185 |
+
= [2.0.2] - 2017-10-26 =
|
186 |
+
|
187 |
+
*Fixed:*
|
188 |
+
|
189 |
+
* Fixed PHP 5.3 compatibility;
|
190 |
+
* Fixed JS error which prevented to paste text in the editor if the preview was disabled;
|
191 |
+
* Fixed validation and activation of license keys for plugins;
|
192 |
+
|
193 |
= [2.0.1] - 2017-10-16 =
|
194 |
|
195 |
+
*Fixed:*
|
196 |
+
|
197 |
* Fixed responsive support for Mixcloud embeds;
|
198 |
* Fixed scripts related to AMP avoiding to load them more than once;
|
199 |
* Fixed custom attributes for Reddit on AMP pages;
|
200 |
|
201 |
= [2.0.0] - 2017-08-02 =
|
202 |
|
203 |
+
*Changed:*
|
204 |
+
|
205 |
* Renamed to PublishPress Embeds
|
206 |
* Changed minimum WP version to 4.5
|
207 |
|
208 |
+
*Fixed:*
|
209 |
+
|
210 |
* Fixed compatibility between Visual Composer and the modal window style;
|
211 |
* Fixed the modal window to edit embeds to recognize the responsive field correctly from the shortcode's params;
|
212 |
* Fixed color picker padding for "Clear" button, and hex color input field;
|
213 |
|
214 |
= [1.7.5] - 2017-06-21 =
|
215 |
|
216 |
+
*Fixed:*
|
217 |
+
|
218 |
* Fixes PHP warning: Cannot use object of type stdClass as array, for imgur
|
219 |
* Fixes PHP warning in the add-ons tab
|
220 |
* Fixes embed for urls matching google.co.*
|
223 |
|
224 |
= [1.7.4] - 2017-05-18 =
|
225 |
|
226 |
+
*Fixed:*
|
227 |
+
|
228 |
* Fixed JS incompatiblity with some 3rd part plugins
|
229 |
* Fixed the Add-on link in the footer
|
230 |
* Fixed typos
|
231 |
* Fixed the "Hello Dolly" message in the Freemius opt-in dialog
|
232 |
|
233 |
+
*Changed:*
|
234 |
+
|
235 |
* Updated the text in the readme file
|
236 |
* Updated the plugin name in the Freemius integration
|
237 |
* Updated banner image
|