FEEDZY RSS Feeds Lite - Version 2.8

Version Description

  • 04/14/2016 =
  • Tested on WP 4.5 with success!
  • themeisle added as plugin author
  • Fix a PHP7 warning in the widget contructor regarding this topic
Download this release

Release Info

Developer briKou
Plugin Icon 128x128 FEEDZY RSS Feeds Lite
Version 2.8
Comparing to
See all releases

Code changes from version 2.7.1 to 2.8

feedzy-rss-feed.php CHANGED
@@ -5,12 +5,12 @@
5
  * Description: FEEDZY RSS Feeds is a small and lightweight plugin. Fast and easy to use, it aggregates RSS feeds into your WordPress site through simple shortcodes.
6
  * Author: Brice CAPOBIANCO
7
  * Author URI: http://b-website.com/
8
- * Version: 2.7.1
9
  * Text Domain: feedzy_rss_translate
10
  * Text Domain Path: /langs
11
  */
12
 
13
- /* Copyright 2015 Brice CAPOBIANCO (contact : http://b-website.com/contact)
14
 
15
  This program is free software; you can redistribute it and/or modify
16
  it under the terms of the GNU General Public License, version 2, as
@@ -41,7 +41,7 @@ if ( !defined( 'ABSPATH' ) ) {
41
  ***************************************************************/
42
  if ( !defined( 'FEEDZY_VERSION' ) ) {
43
 
44
- define( 'FEEDZY_VERSION', '2.7.1' );
45
 
46
  }
47
 
@@ -66,7 +66,6 @@ function feedzy_meta_links( $links, $file ) {
66
  if ( $file === 'feedzy-rss-feeds/feedzy-rss-feed.php' ) {
67
  $links[] = '<a href="http://b-website.com/feedzy-rss-feeds-wordpress-plugin-using-simplepie" target="_blank" title="'. __( 'Documentation and examples', 'feedzy_rss_translate' ) .'">'. __( 'Documentation and examples', 'feedzy_rss_translate' ) .'</a>';
68
  $links[] = '<a href="http://b-website.com/category/plugins" target="_blank" title="'. __( 'More b*web Plugins', 'feedzy_rss_translate' ) .'">'. __( 'More b*web Plugins', 'feedzy_rss_translate' ) .'</a>';
69
- $links[] = '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=7Z6YVM63739Y8" target="_blank" title="' . __( 'Donate to this plugin &#187;' ) . '"><strong>' . __( 'Donate to this plugin &#187;' ) . '</strong></a>';
70
  }
71
 
72
  return $links;
5
  * Description: FEEDZY RSS Feeds is a small and lightweight plugin. Fast and easy to use, it aggregates RSS feeds into your WordPress site through simple shortcodes.
6
  * Author: Brice CAPOBIANCO
7
  * Author URI: http://b-website.com/
8
+ * Version: 2.8
9
  * Text Domain: feedzy_rss_translate
10
  * Text Domain Path: /langs
11
  */
12
 
13
+ /* Copyright 2016 Brice CAPOBIANCO (contact : http://b-website.com/contact)
14
 
15
  This program is free software; you can redistribute it and/or modify
16
  it under the terms of the GNU General Public License, version 2, as
41
  ***************************************************************/
42
  if ( !defined( 'FEEDZY_VERSION' ) ) {
43
 
44
+ define( 'FEEDZY_VERSION', '2.8' );
45
 
46
  }
47
 
66
  if ( $file === 'feedzy-rss-feeds/feedzy-rss-feed.php' ) {
67
  $links[] = '<a href="http://b-website.com/feedzy-rss-feeds-wordpress-plugin-using-simplepie" target="_blank" title="'. __( 'Documentation and examples', 'feedzy_rss_translate' ) .'">'. __( 'Documentation and examples', 'feedzy_rss_translate' ) .'</a>';
68
  $links[] = '<a href="http://b-website.com/category/plugins" target="_blank" title="'. __( 'More b*web Plugins', 'feedzy_rss_translate' ) .'">'. __( 'More b*web Plugins', 'feedzy_rss_translate' ) .'</a>';
 
69
  }
70
 
71
  return $links;
feedzy-rss-feeds-widget.php CHANGED
@@ -16,7 +16,7 @@ add_action( 'widgets_init', create_function( '', 'return register_widget("feedzy
16
  class feedzy_wp_widget extends WP_Widget {
17
 
18
  //Constructor
19
- function feedzy_wp_widget() {
20
 
21
  parent::__construct( false, $name = __( 'Feedzy RSS Feeds', 'feedzy_wp_widget' ) );
22
 
16
  class feedzy_wp_widget extends WP_Widget {
17
 
18
  //Constructor
19
+ function __construct() {
20
 
21
  parent::__construct( false, $name = __( 'Feedzy RSS Feeds', 'feedzy_wp_widget' ) );
22
 
readme.txt CHANGED
@@ -1,10 +1,9 @@
1
  === FEEDZY RSS Feeds ===
2
- Contributors: briKou
3
- Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=7Z6YVM63739Y8
4
  Tags: RSS, SimplePie, shortcode, feed, thumbnail, image, rss feeds, aggregator, tinyMCE, WYSIWYG, MCE, UI, flux, plugin, WordPress, widget, importer, XML, ATOM, API, parser
5
  Requires at least: 3.7
6
- Tested up to: 4.3.1
7
- Stable tag: 2.7.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -120,6 +119,10 @@ You have to check first if your feed is valid. Please test it here: https://vali
120
 
121
 
122
  == Changelog ==
 
 
 
 
123
 
124
  = 2.7.1 =
125
  * Remove unnecessary and redundant feedzy_wp_widget_box div container in the widget's body
1
  === FEEDZY RSS Feeds ===
2
+ Contributors: briKou, themeisle
 
3
  Tags: RSS, SimplePie, shortcode, feed, thumbnail, image, rss feeds, aggregator, tinyMCE, WYSIWYG, MCE, UI, flux, plugin, WordPress, widget, importer, XML, ATOM, API, parser
4
  Requires at least: 3.7
5
+ Tested up to: 4.5
6
+ Stable tag: 2.8
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
119
 
120
 
121
  == Changelog ==
122
+ = 2.8 - 04/14/2016 =
123
+ * Tested on WP 4.5 with success!
124
+ * themeisle added as plugin author
125
+ * Fix a PHP7 warning in the widget contructor regarding [this topic](https://wordpress.org/support/topic/php7-debug-error?replies=1)
126
 
127
  = 2.7.1 =
128
  * Remove unnecessary and redundant feedzy_wp_widget_box div container in the widget's body