Version Description
- Fixed: missing posts from page embeds
- Updated: readme file
Download this release
Release Info
Developer | poxtron |
Plugin | WP Embed Facebook |
Version | 2.1.6 |
Comparing to | |
See all releases |
Code changes from version 2.1.5 to 2.1.6
- lang/wp-embed-facebook.pot +1 -1
- readme.txt +7 -3
- templates/classic/page.php +2 -2
- templates/default/page.php +2 -2
- wp-embed-facebook.php +1 -1
lang/wp-embed-facebook.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the WP Embed Facebook package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WP Embed Facebook 2.1.
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/wp-embed-facebook\n"
|
8 |
"POT-Creation-Date: 2016-06-22 18:07:38+00:00\n"
|
2 |
# This file is distributed under the same license as the WP Embed Facebook package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WP Embed Facebook 2.1.5\n"
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/wp-embed-facebook\n"
|
8 |
"POT-Creation-Date: 2016-06-22 18:07:38+00:00\n"
|
readme.txt
CHANGED
@@ -4,11 +4,11 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: Facebook, facebook, Social Plugins, embed facebook, facebook video, facebook posts, facebook publication, facebook publications, facebook event, facebook events, facebook pages, facebook page, facebook profiles, facebook album, facebook albums, facebook photos, facebook photo, social,
|
5 |
Requires at least: 3.8.1
|
6 |
Tested up to: 4.6
|
7 |
-
Stable tag: 2.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
-
Embed any public Facebook video, page, comment, event, album, photo, profile
|
12 |
|
13 |
== Description ==
|
14 |
This plugin understands the url you entered on the editor or inside the `[embed]` [shortcode](https://codex.wordpress.org/Embeds) and returns the proper social plugin or custom embed.
|
@@ -137,6 +137,10 @@ Buying the premium extensions helps to keep this project alive.
|
|
137 |
|
138 |
== Changelog ==
|
139 |
|
|
|
|
|
|
|
|
|
140 |
= 2.1.5 =
|
141 |
* Added: new filter wef_lightbox_title
|
142 |
* Added: event time format option
|
@@ -188,7 +192,7 @@ Buying the premium extensions helps to keep this project alive.
|
|
188 |
* Added JetPack Photon compatibility
|
189 |
* Added compatibility with some drag and drop themes
|
190 |
* Added lightbox.sass for theme developers
|
191 |
-
* Changed:
|
192 |
* Added Lightbox Option Album Label
|
193 |
* Added Lightbox Option Always Show Nav On Touch Devices
|
194 |
* Added Lightbox Option Show Image Number Label
|
4 |
Tags: Facebook, facebook, Social Plugins, embed facebook, facebook video, facebook posts, facebook publication, facebook publications, facebook event, facebook events, facebook pages, facebook page, facebook profiles, facebook album, facebook albums, facebook photos, facebook photo, social,
|
5 |
Requires at least: 3.8.1
|
6 |
Tested up to: 4.6
|
7 |
+
Stable tag: 2.1.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
+
Embed any public Facebook video, page, comment, event, album, photo, profile. Add Facebook comments to all your site or embed any Social Plugin.
|
12 |
|
13 |
== Description ==
|
14 |
This plugin understands the url you entered on the editor or inside the `[embed]` [shortcode](https://codex.wordpress.org/Embeds) and returns the proper social plugin or custom embed.
|
137 |
|
138 |
== Changelog ==
|
139 |
|
140 |
+
= 2.1.6 =
|
141 |
+
* Fixed: missing posts from page embeds
|
142 |
+
* Updated: readme file
|
143 |
+
|
144 |
= 2.1.5 =
|
145 |
* Added: new filter wef_lightbox_title
|
146 |
* Added: event time format option
|
192 |
* Added JetPack Photon compatibility
|
193 |
* Added compatibility with some drag and drop themes
|
194 |
* Added lightbox.sass for theme developers
|
195 |
+
* Changed: Lightbox script and style
|
196 |
* Added Lightbox Option Album Label
|
197 |
* Added Lightbox Option Always Show Nav On Touch Devices
|
198 |
* Added Lightbox Option Show Image Number Label
|
templates/classic/page.php
CHANGED
@@ -37,8 +37,8 @@
|
|
37 |
</div>
|
38 |
</div>
|
39 |
</div>
|
40 |
-
<?php if(isset($fb_data['
|
41 |
-
<?php foreach($fb_data['
|
42 |
<?php if(isset($fb_post['picture']) || isset($fb_post['message'])) : ?>
|
43 |
<?php include('single-post.php') ?>
|
44 |
<?php endif; ?>
|
37 |
</div>
|
38 |
</div>
|
39 |
</div>
|
40 |
+
<?php if(isset($fb_data['feed'])) : global $wp_embed; ?>
|
41 |
+
<?php foreach($fb_data['feed']['data'] as $fb_post) : ?>
|
42 |
<?php if(isset($fb_post['picture']) || isset($fb_post['message'])) : ?>
|
43 |
<?php include('single-post.php') ?>
|
44 |
<?php endif; ?>
|
templates/default/page.php
CHANGED
@@ -37,8 +37,8 @@
|
|
37 |
</div>
|
38 |
</div>
|
39 |
</div>
|
40 |
-
<?php if(isset($fb_data['
|
41 |
-
<?php foreach($fb_data['
|
42 |
<?php if(isset($fb_post['picture']) || isset($fb_post['message'])) : ?>
|
43 |
<?php include('single-post.php') ?>
|
44 |
<?php endif; ?>
|
37 |
</div>
|
38 |
</div>
|
39 |
</div>
|
40 |
+
<?php if(isset($fb_data['feed'])) : global $wp_embed; ?>
|
41 |
+
<?php foreach($fb_data['feed']['data'] as $fb_post) : ?>
|
42 |
<?php if(isset($fb_post['picture']) || isset($fb_post['message'])) : ?>
|
43 |
<?php include('single-post.php') ?>
|
44 |
<?php endif; ?>
|
wp-embed-facebook.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Embed Facebook
|
|
4 |
Plugin URI: http://www.wpembedfb.com
|
5 |
Description: Embed any public Facebook video, photo, album, event, page, comment, profile, or post. Add Facebook comments to all your site, insert facebook social plugins (like, save, send, share, follow, quote, comments) anywhere on your site. View the <a href="http://www.wpembedfb.com/demo-site/" title="plugin website" target="_blank">demo site</a>.
|
6 |
Author: Miguel Sirvent
|
7 |
-
Version: 2.1.
|
8 |
Author URI: http://www.wpembedfb.com
|
9 |
Text Domain: wp-embed-facebook
|
10 |
Domain Path: /lang
|
4 |
Plugin URI: http://www.wpembedfb.com
|
5 |
Description: Embed any public Facebook video, photo, album, event, page, comment, profile, or post. Add Facebook comments to all your site, insert facebook social plugins (like, save, send, share, follow, quote, comments) anywhere on your site. View the <a href="http://www.wpembedfb.com/demo-site/" title="plugin website" target="_blank">demo site</a>.
|
6 |
Author: Miguel Sirvent
|
7 |
+
Version: 2.1.6
|
8 |
Author URI: http://www.wpembedfb.com
|
9 |
Text Domain: wp-embed-facebook
|
10 |
Domain Path: /lang
|