Version Description
- Plugin meta update
Download this release
Release Info
| Developer | briKou |
| Plugin | |
| Version | 1.5.2 |
| Comparing to | |
| See all releases | |
Code changes from version 1.5.1 to 1.5.2
- feedzy-rss-feed.php +19 -2
- img/icon-bweb.png +0 -0
- readme.txt +8 -1
feedzy-rss-feed.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 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: 1.5.
|
| 9 |
* Text Domain: feedzy_rss_translate
|
| 10 |
*/
|
| 11 |
|
|
@@ -36,10 +36,27 @@ if (!function_exists('feedzy_rss_load_textdomain')) {
|
|
| 36 |
}
|
| 37 |
|
| 38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
/***************************************************************
|
| 40 |
* Load plugin files
|
| 41 |
***************************************************************/
|
| 42 |
-
require_once( plugin_dir_path( __FILE__ ) . '
|
| 43 |
|
| 44 |
|
| 45 |
/***************************************************************
|
| 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: 1.5.2
|
| 9 |
* Text Domain: feedzy_rss_translate
|
| 10 |
*/
|
| 11 |
|
| 36 |
}
|
| 37 |
|
| 38 |
|
| 39 |
+
/***************************************************************
|
| 40 |
+
* Add custom meta link on plugin list page
|
| 41 |
+
***************************************************************/
|
| 42 |
+
if ( ! function_exists( 'feedzy_meta_links' ) ) {
|
| 43 |
+
function feedzy_meta_links( $links, $file ) {
|
| 44 |
+
if ( strpos( $file, 'feedzy-rss-feed.php' ) !== false ) {
|
| 45 |
+
$links[0] = '<a href="http://b-website.com/" target="_blank"><img src="' . plugins_url('img/icon-bweb.png', __FILE__ ) . '" style="margin-bottom: -4px;" alt="b*web"/></a> '. $links[0];
|
| 46 |
+
$links = array_merge( $links, array( '<a href="http://b-website.com/feedzy-rss-feeds-wordpress-plugin-using-simplepie" target="_blank" title="'. __( 'Documentation and examples', 'an-translate' ) .'"><strong style="color:#db3939">'. __( 'Documentation and examples', 'an-translate' ) .'</strong></a>' ) );
|
| 47 |
+
$links = array_merge( $links, array( '<a href="http://b-website.com/category/plugins" target="_blank" title="'. __( 'More b*web Plugins', 'an-translate' ) .'">'. __( 'More b*web Plugins', 'feedzy_rss_translate' ) .'</a>' ) );
|
| 48 |
+
$links = array_merge( $links, array( '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=7Z6YVM63739Y8" target="_blank" title="'. __( 'Donate', 'an-translate' ) .'"><strong>'. __( 'Donate', 'an-translate' ) .'</strong></a>' ) );
|
| 49 |
+
}
|
| 50 |
+
return $links;
|
| 51 |
+
}
|
| 52 |
+
add_filter( 'plugin_row_meta', 'feedzy_meta_links', 10, 2 );
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
|
| 56 |
/***************************************************************
|
| 57 |
* Load plugin files
|
| 58 |
***************************************************************/
|
| 59 |
+
require_once( plugin_dir_path( __FILE__ ) . 'feedzy-rss-feeds-ui.php' );
|
| 60 |
|
| 61 |
|
| 62 |
/***************************************************************
|
img/icon-bweb.png
ADDED
|
Binary file
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
| 4 |
Tags: RSS, SimplePie, shortcode, feed, thumbnail, image, rss feeds, aggregator
|
| 5 |
Requires at least: 3.7
|
| 6 |
Tested up to: 4.0
|
| 7 |
-
Stable tag: 1.5.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -84,6 +84,13 @@ Yes it is.
|
|
| 84 |
== Changelog ==
|
| 85 |
|
| 86 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 87 |
= 1.5 =
|
| 88 |
* New param added to filter item with keywords
|
| 89 |
* Default thumb added
|
| 4 |
Tags: RSS, SimplePie, shortcode, feed, thumbnail, image, rss feeds, aggregator
|
| 5 |
Requires at least: 3.7
|
| 6 |
Tested up to: 4.0
|
| 7 |
+
Stable tag: 1.5.2
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 84 |
== Changelog ==
|
| 85 |
|
| 86 |
|
| 87 |
+
= 1.5.2 =
|
| 88 |
+
* Plugin meta update
|
| 89 |
+
|
| 90 |
+
= 1.5.1 =
|
| 91 |
+
* New logo
|
| 92 |
+
* Minor CSS fixes
|
| 93 |
+
|
| 94 |
= 1.5 =
|
| 95 |
* New param added to filter item with keywords
|
| 96 |
* Default thumb added
|
