Version Description
- Fix: Fixed an issue with the 'Show posts by others' option not working correctly in the previous version.
Download this release
Release Info
Developer | smashballoon |
Plugin | Custom Facebook Feed |
Version | 1.6.4.1 |
Comparing to | |
See all releases |
Code changes from version 1.6.4 to 1.6.4.1
- README.txt +4 -1
- custom-facebook-feed.php +2 -2
README.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: smashballoon
|
|
3 |
Tags: facebook, custom, customizable, feed, events, seo, search engine, responsive, mobile, shortcode, social, status, posts
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.7.1
|
6 |
-
Stable tag: 1.6.4
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -102,6 +102,9 @@ You can embed your Facebook feed directly into a template file by using the Word
|
|
102 |
|
103 |
== Changelog ==
|
104 |
|
|
|
|
|
|
|
105 |
= 1.6.4 =
|
106 |
* New: Added localization support. Full support for various languages coming soon
|
107 |
* New: Added CSS classes to different post types to allow for different styling based on post type
|
3 |
Tags: facebook, custom, customizable, feed, events, seo, search engine, responsive, mobile, shortcode, social, status, posts
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.7.1
|
6 |
+
Stable tag: 1.6.4.1
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
102 |
|
103 |
== Changelog ==
|
104 |
|
105 |
+
= 1.6.4.1 =
|
106 |
+
* Fix: Fixed an issue with the 'Show posts by others' option not working correctly in the previous version.
|
107 |
+
|
108 |
= 1.6.4 =
|
109 |
* New: Added localization support. Full support for various languages coming soon
|
110 |
* New: Added CSS classes to different post types to allow for different styling based on post type
|
custom-facebook-feed.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Custom Facebook Feed
|
4 |
Plugin URI: http://smashballoon.com/custom-facebook-feed
|
5 |
Description: Add a completely customizable Facebook feed to your WordPress site
|
6 |
-
Version: 1.6.4
|
7 |
Author: Smash Balloon
|
8 |
Author URI: http://smashballoon.com/
|
9 |
License: GPLv2 or later
|
@@ -326,7 +326,7 @@ function display_cff($atts) {
|
|
326 |
//Use posts? or feed?
|
327 |
$show_others = $atts['others'];
|
328 |
$graph_query = 'posts';
|
329 |
-
if ($show_others == 'true') $graph_query = 'feed';
|
330 |
$cff_post_limit = $atts['limit'];
|
331 |
//Calculate the cache time in seconds
|
332 |
if($cff_cache_time_unit == 'minutes') $cff_cache_time_unit = 60;
|
3 |
Plugin Name: Custom Facebook Feed
|
4 |
Plugin URI: http://smashballoon.com/custom-facebook-feed
|
5 |
Description: Add a completely customizable Facebook feed to your WordPress site
|
6 |
+
Version: 1.6.4.1
|
7 |
Author: Smash Balloon
|
8 |
Author URI: http://smashballoon.com/
|
9 |
License: GPLv2 or later
|
326 |
//Use posts? or feed?
|
327 |
$show_others = $atts['others'];
|
328 |
$graph_query = 'posts';
|
329 |
+
if ($show_others == true || $show_others == 'true') $graph_query = 'feed';
|
330 |
$cff_post_limit = $atts['limit'];
|
331 |
//Calculate the cache time in seconds
|
332 |
if($cff_cache_time_unit == 'minutes') $cff_cache_time_unit = 60;
|