Version Description
- 21/02/2017 =
- Added wrong feed title check.
Download this release
Release Info
Developer | codeinwp |
Plugin | FEEDZY RSS Feeds Lite |
Version | 3.0.9 |
Comparing to | |
See all releases |
Code changes from version 3.0.8 to 3.0.9
- CHANGELOG.md +4 -2
- css/feedzy-rss-feeds.css +1 -1
- feedzy-rss-feed.php +1 -1
- includes/abstract/feedzy-rss-feeds-admin-abstract.php +1 -1
- includes/feedzy-rss-feeds.php +1 -1
- readme.txt +3 -0
CHANGELOG.md
CHANGED
@@ -1,4 +1,8 @@
|
|
1 |
|
|
|
|
|
|
|
2 |
-
|
3 |
|
4 |
|
5 |
|
6 |
-
Added sizes param to feedzy_thumb_output.
|
1 |
|
2 |
+
|
3 |
+
|
4 |
+
|
5 |
+
|
6 |
|
7 |
|
8 |
|
|
css/feedzy-rss-feeds.css
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
* feedzy-rss-feeds.css
|
3 |
* Feedzy RSS Feed
|
4 |
* Copyright: (c) 2016 Themeisle, themeisle.com
|
5 |
-
* Version: 3.0.
|
6 |
* Plugin Name: FEEDZY RSS Feeds
|
7 |
* Plugin URI: http://themeisle.com/plugins/feedzy-rss-feeds/
|
8 |
* Author: Themeisle
|
2 |
* feedzy-rss-feeds.css
|
3 |
* Feedzy RSS Feed
|
4 |
* Copyright: (c) 2016 Themeisle, themeisle.com
|
5 |
+
* Version: 3.0.9
|
6 |
* Plugin Name: FEEDZY RSS Feeds
|
7 |
* Plugin URI: http://themeisle.com/plugins/feedzy-rss-feeds/
|
8 |
* Author: Themeisle
|
feedzy-rss-feed.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
* Plugin Name: Feedzy RSS Feeds Lite
|
16 |
* Plugin URI: https://themeisle.com/plugins/feedzy-rss-feeds-lite/
|
17 |
* Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area.
|
18 |
-
* Version: 3.0.
|
19 |
* Author: Themeisle
|
20 |
* Author URI: http://themeisle.com
|
21 |
* License: GPL-2.0+
|
15 |
* Plugin Name: Feedzy RSS Feeds Lite
|
16 |
* Plugin URI: https://themeisle.com/plugins/feedzy-rss-feeds-lite/
|
17 |
* Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area.
|
18 |
+
* Version: 3.0.9
|
19 |
* Author: Themeisle
|
20 |
* Author URI: http://themeisle.com
|
21 |
* License: GPL-2.0+
|
includes/abstract/feedzy-rss-feeds-admin-abstract.php
CHANGED
@@ -393,7 +393,7 @@ abstract class Feedzy_Rss_Feeds_Admin_Abstract {
|
|
393 |
$items = apply_filters( 'feedzy_feed_items', $feed->get_items(), $feedURL );
|
394 |
$feed_items = array();
|
395 |
foreach ( (array) $items as $item ) {
|
396 |
-
if (
|
397 |
$continue = apply_filters( 'feedzy_item_keyword', true, $sc, $item, $feedURL );
|
398 |
if ( $continue == true ) {
|
399 |
// Count items
|
393 |
$items = apply_filters( 'feedzy_feed_items', $feed->get_items(), $feedURL );
|
394 |
$feed_items = array();
|
395 |
foreach ( (array) $items as $item ) {
|
396 |
+
if ( trim( $item->get_title() ) != '' ) {
|
397 |
$continue = apply_filters( 'feedzy_item_keyword', true, $sc, $item, $feedURL );
|
398 |
if ( $continue == true ) {
|
399 |
// Count items
|
includes/feedzy-rss-feeds.php
CHANGED
@@ -104,7 +104,7 @@ class Feedzy_Rss_Feeds {
|
|
104 |
*/
|
105 |
public function init() {
|
106 |
self::$plugin_name = 'feedzy-rss-feeds';
|
107 |
-
self::$version = '3.0.
|
108 |
self::$instance->load_dependencies();
|
109 |
self::$instance->set_locale();
|
110 |
self::$instance->define_admin_hooks();
|
104 |
*/
|
105 |
public function init() {
|
106 |
self::$plugin_name = 'feedzy-rss-feeds';
|
107 |
+
self::$version = '3.0.9';
|
108 |
self::$instance->load_dependencies();
|
109 |
self::$instance->set_locale();
|
110 |
self::$instance->define_admin_hooks();
|
readme.txt
CHANGED
@@ -188,6 +188,9 @@ http://docs.themeisle.com/article/567-how-to-display-rss-feed-time-and-date-in-l
|
|
188 |
|
189 |
== Changelog ==
|
190 |
|
|
|
|
|
|
|
191 |
= 3.0.8 - 20/02/2017 =
|
192 |
* Added $sizes param to feedzy_thumb_output.
|
193 |
* Added check when title is empty.
|
188 |
|
189 |
== Changelog ==
|
190 |
|
191 |
+
= 3.0.9 - 21/02/2017 =
|
192 |
+
* Added wrong feed title check.
|
193 |
+
|
194 |
= 3.0.8 - 20/02/2017 =
|
195 |
* Added $sizes param to feedzy_thumb_output.
|
196 |
* Added check when title is empty.
|