Version Description
Download this release
Release Info
Developer | poxtron |
Plugin | WP Embed Facebook |
Version | 1.2.3 |
Comparing to | |
See all releases |
Code changes from version 1.2.2 to 1.2.3
- readme.txt +1 -1
- templates/default/posts.php +2 -1
- wp-embed-fb.php +2 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.saliuitl.org/en/wp-embed-facebook/donate
|
|
4 |
Tags: facebook, embed, opengraph, fbsdk, facebook events, facebook pages, facebook profiles,
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 3.8.1
|
7 |
-
Stable tag: 1.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
4 |
Tags: facebook, embed, opengraph, fbsdk, facebook events, facebook pages, facebook profiles,
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 3.8.1
|
7 |
+
Stable tag: 1.2.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
templates/default/posts.php
CHANGED
@@ -1 +1,2 @@
|
|
1 |
-
<div class="fb-post" data-href="https://www.facebook.com
|
|
1 |
+
<div class="fb-post" data-href="https://www.facebook.com/<?php echo $fb_data['user'] ?>/posts/<?php echo $fb_data['is_post'] ?>" data-width="<?php echo $width ?>">
|
2 |
+
</div>
|
wp-embed-fb.php
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* @package WP_Embed_Facebook
|
4 |
-
* @version 1.2.
|
5 |
*/
|
6 |
/*
|
7 |
Plugin Name: WP Embed Facebook
|
8 |
Plugin URI: http://www.saliuitl.org/en/wp-embed-facebook/
|
9 |
Description: Embed a Facebook page, post, event, photo or profile to any Wordpress post or page. Copy any fb url to a single line on your post.
|
10 |
Author: Miguel Sirvent
|
11 |
-
Version: 1.2.
|
12 |
Author URI: http://www.saliuitl.org/
|
13 |
*/
|
14 |
|
1 |
<?php
|
2 |
/**
|
3 |
* @package WP_Embed_Facebook
|
4 |
+
* @version 1.2.3
|
5 |
*/
|
6 |
/*
|
7 |
Plugin Name: WP Embed Facebook
|
8 |
Plugin URI: http://www.saliuitl.org/en/wp-embed-facebook/
|
9 |
Description: Embed a Facebook page, post, event, photo or profile to any Wordpress post or page. Copy any fb url to a single line on your post.
|
10 |
Author: Miguel Sirvent
|
11 |
+
Version: 1.2.3
|
12 |
Author URI: http://www.saliuitl.org/
|
13 |
*/
|
14 |
|