Version Description
- 2019-11-11
Download this release
Release Info
Developer | codeinwp |
Plugin | FEEDZY RSS Feeds Lite |
Version | 3.3.12 |
Comparing to | |
See all releases |
Code changes from version 3.3.11 to 3.3.12
- CHANGELOG.md +8 -0
- css/feedzy-rss-feeds.css +1 -1
- cypress.env.json.template +0 -6
- cypress.json +0 -7
- docker-compose.travis.yml +0 -36
- feedzy-rss-feed.php +1 -1
- includes/abstract/feedzy-rss-feeds-admin-abstract.php +70 -0
- includes/feedzy-rss-feeds.php +3 -1
- readme.md +203 -185
- readme.txt +230 -212
- themeisle-hash.json +1 -1
- vendor/autoload.php +1 -1
- vendor/autoload_52.php +1 -1
- vendor/codeinwp/themeisle-sdk/CHANGELOG.md +16 -0
- vendor/codeinwp/themeisle-sdk/load.php +1 -1
- vendor/codeinwp/themeisle-sdk/src/Modules/Licenser.php +13 -2
- vendor/composer/autoload_real.php +5 -5
- vendor/composer/autoload_real_52.php +3 -3
- vendor/composer/installed.json +4 -4
CHANGELOG.md
CHANGED
@@ -1,4 +1,12 @@
|
|
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
### v3.3.11 - 2019-09-24
|
3 |
**Changes:**
|
4 |
* Fix issue with replacing ellipsis
|
1 |
|
2 |
+
### v3.3.12 - 2019-11-11
|
3 |
+
**Changes:**
|
4 |
+
* Update readme
|
5 |
+
|
6 |
+
### v3.3.12 - 2019-11-11
|
7 |
+
**Changes:**
|
8 |
+
* Tested up to 5.3
|
9 |
+
|
10 |
### v3.3.11 - 2019-09-24
|
11 |
**Changes:**
|
12 |
* Fix issue with replacing ellipsis
|
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.3.
|
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.3.12
|
6 |
* Plugin Name: FEEDZY RSS Feeds
|
7 |
* Plugin URI: http://themeisle.com/plugins/feedzy-rss-feeds/
|
8 |
* Author: Themeisle
|
cypress.env.json.template
DELETED
@@ -1,6 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"host": "http://localhost:90/", // the site url
|
3 |
-
"wp-admin": "wp-admin/", // the path to wp-admin
|
4 |
-
"login": "wordpress", // the WP username
|
5 |
-
"pass": "wordpress" // the WP password
|
6 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
cypress.json
DELETED
@@ -1,7 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"env": {
|
3 |
-
"shortcode": "[feedzy-rss feeds='https://s3.amazonaws.com/downloads.themeisle.com/sample-feed.xml' max='10' feed_title='yes' refresh='1_hours' meta='yes' summary='yes' price='yes' mapping='price=im:price' thumb='yes' keywords_title='God, Mendes, Cyrus' keywords_ban='Cyrus' template='style1']"
|
4 |
-
},
|
5 |
-
"projectId": "vj4ftg",
|
6 |
-
"videoUploadOnPasses": false
|
7 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
docker-compose.travis.yml
DELETED
@@ -1,36 +0,0 @@
|
|
1 |
-
version: '3.3'
|
2 |
-
services:
|
3 |
-
mysql:
|
4 |
-
image: mysql:5.7
|
5 |
-
container_name: feedzy_mysql
|
6 |
-
volumes:
|
7 |
-
- ./bin/mysql:/docker-entrypoint-initdb.d
|
8 |
-
restart: always
|
9 |
-
environment:
|
10 |
-
MYSQL_ROOT_PASSWORD: wordpress
|
11 |
-
MYSQL_DATABASE: wordpress
|
12 |
-
MYSQL_USER: wordpress
|
13 |
-
MYSQL_PASSWORD: wordpress
|
14 |
-
|
15 |
-
wordpress:
|
16 |
-
container_name: feedzy_wordpress
|
17 |
-
depends_on:
|
18 |
-
- mysql
|
19 |
-
image: hardeepasrani/pirate-brewery
|
20 |
-
networks:
|
21 |
-
- default
|
22 |
-
ports:
|
23 |
-
- 8888:80
|
24 |
-
volumes:
|
25 |
-
- ~/wpcore:/var/www/html/
|
26 |
-
- ./wp-content:/var/www/html/wp-content/
|
27 |
-
- .:/var/www/html/wp-content/plugins/feedzy-rss-feeds/
|
28 |
-
restart: always
|
29 |
-
environment:
|
30 |
-
WORDPRESS_DB_NAME: wordpress
|
31 |
-
WORDPRESS_DB_USER: wordpress
|
32 |
-
WORDPRESS_DB_PASSWORD: wordpress
|
33 |
-
WORDPRESS_DEBUG: 1
|
34 |
-
WORDPRESS_DB_ROOT_PASSWORD: wordpress
|
35 |
-
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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: A small and lightweight RSS aggregator plugin. Fast and very easy to use, it allows you to aggregate multiple RSS feeds into your WordPress site through fully customizable shortcodes & widgets.
|
18 |
-
* Version: 3.3.
|
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: A small and lightweight RSS aggregator plugin. Fast and very easy to use, it allows you to aggregate multiple RSS feeds into your WordPress site through fully customizable shortcodes & widgets.
|
18 |
+
* Version: 3.3.12
|
19 |
* Author: Themeisle
|
20 |
* Author URI: http://themeisle.com
|
21 |
* License: GPL-2.0+
|
includes/abstract/feedzy-rss-feeds-admin-abstract.php
CHANGED
@@ -45,6 +45,76 @@ abstract class Feedzy_Rss_Feeds_Admin_Abstract {
|
|
45 |
return apply_filters( 'feedzy_define_default_image_filter', $default_img );
|
46 |
}
|
47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
/**
|
49 |
* Defines the default error notice
|
50 |
*
|
45 |
return apply_filters( 'feedzy_define_default_image_filter', $default_img );
|
46 |
}
|
47 |
|
48 |
+
/**
|
49 |
+
* Fetches the SDK logger data.
|
50 |
+
*
|
51 |
+
* @param array $data The default data that needs to be sent.
|
52 |
+
*
|
53 |
+
* @access public
|
54 |
+
*/
|
55 |
+
public function get_usage_data( $data ) {
|
56 |
+
global $wpdb;
|
57 |
+
|
58 |
+
// how many categories created
|
59 |
+
$categories = count( get_terms( array( 'taxonomy' => 'feedzy_categories' ) ) );
|
60 |
+
// imports
|
61 |
+
$imports = array();
|
62 |
+
$license = 'free';
|
63 |
+
if ( feedzy_is_pro() ) {
|
64 |
+
$license = 'pro';
|
65 |
+
if ( apply_filters( 'feedzy_is_license_of_type', false, 'agency' ) ) {
|
66 |
+
$license = 'agency';
|
67 |
+
} elseif ( apply_filters( 'feedzy_is_license_of_type', false, 'business' ) ) {
|
68 |
+
$license = 'business';
|
69 |
+
}
|
70 |
+
|
71 |
+
$integrations = array();
|
72 |
+
$settings = get_option( 'feedzy-rss-feeds-settings' );
|
73 |
+
if ( 'agency' === $license && $settings ) {
|
74 |
+
if ( isset( $settings['spinnerchief_licence'] ) && 'yes' === $settings['spinnerchief_licence'] ) {
|
75 |
+
$integrations[] = 'spinnerchief';
|
76 |
+
}
|
77 |
+
if ( isset( $settings['wordai_licence'] ) && 'yes' === $settings['wordai_licence'] ) {
|
78 |
+
$integrations[] = 'wordai';
|
79 |
+
}
|
80 |
+
}
|
81 |
+
|
82 |
+
$imports = apply_filters(
|
83 |
+
'feedzy_usage_data', array(
|
84 |
+
// how many active imports are created
|
85 |
+
'publish' => count( get_posts( array( 'post_type' => 'feedzy_imports', 'post_status' => 'publish', 'numberposts' => 299, 'fields' => 'ids' ) ) ),
|
86 |
+
// how many draft imports are created
|
87 |
+
'draft' => count( get_posts( array( 'post_type' => 'feedzy_imports', 'post_status' => 'draft', 'numberposts' => 299, 'fields' => 'ids' ) ) ),
|
88 |
+
// how many posts were imported by the imports
|
89 |
+
'imported' => count( get_posts( array( 'post_type' => 'post', 'post_status' => array( 'publish', 'private', 'draft', 'trash' ), 'numberposts' => 2999, 'fields' => 'ids', 'meta_key' => 'feedzy', 'meta_value' => 1 ) ) ),
|
90 |
+
// integrations
|
91 |
+
'integrations' => $integrations,
|
92 |
+
)
|
93 |
+
);
|
94 |
+
}
|
95 |
+
|
96 |
+
$settings = apply_filters( 'feedzy_get_settings', null );
|
97 |
+
$config = array();
|
98 |
+
if ( $settings ) {
|
99 |
+
$proxy = isset( $settings['proxy'] ) && is_array( $settings['proxy'] ) && ! empty( $settings['proxy'] ) ? array_filter( $settings['proxy'] ) : array();
|
100 |
+
if ( ! empty( $proxy ) ) {
|
101 |
+
$config[] = 'proxy';
|
102 |
+
}
|
103 |
+
}
|
104 |
+
|
105 |
+
// how many posts contain the shortcode
|
106 |
+
$shortcodes = $wpdb->get_var( "SELECT count(*) FROM wp_posts WHERE post_status IN ('publish', 'private') AND post_content LIKE '%[feedzy-rss %'" );
|
107 |
+
$data = array(
|
108 |
+
'categories' => $categories,
|
109 |
+
'imports' => $imports,
|
110 |
+
'shortcodes' => $shortcodes,
|
111 |
+
'license' => $license,
|
112 |
+
'config' => $config,
|
113 |
+
);
|
114 |
+
|
115 |
+
return $data;
|
116 |
+
}
|
117 |
+
|
118 |
/**
|
119 |
* Defines the default error notice
|
120 |
*
|
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.3.
|
108 |
self::$instance->load_dependencies();
|
109 |
self::$instance->set_locale();
|
110 |
self::$instance->define_admin_hooks();
|
@@ -218,6 +218,8 @@ class Feedzy_Rss_Feeds {
|
|
218 |
$plugin_widget = new feedzy_wp_widget();
|
219 |
self::$instance->loader->add_action( 'widgets_init', $plugin_widget, 'registerWidget', 10 );
|
220 |
|
|
|
|
|
221 |
if ( ! defined( 'TI_UNIT_TESTING' ) ) {
|
222 |
add_action(
|
223 |
'plugins_loaded', function () {
|
104 |
*/
|
105 |
public function init() {
|
106 |
self::$plugin_name = 'feedzy-rss-feeds';
|
107 |
+
self::$version = '3.3.12';
|
108 |
self::$instance->load_dependencies();
|
109 |
self::$instance->set_locale();
|
110 |
self::$instance->define_admin_hooks();
|
218 |
$plugin_widget = new feedzy_wp_widget();
|
219 |
self::$instance->loader->add_action( 'widgets_init', $plugin_widget, 'registerWidget', 10 );
|
220 |
|
221 |
+
self::$instance->loader->add_filter( 'feedzy_rss_feeds_logger_data', self::$instance->admin, 'get_usage_data', 10 );
|
222 |
+
|
223 |
if ( ! defined( 'TI_UNIT_TESTING' ) ) {
|
224 |
add_action(
|
225 |
'plugins_loaded', function () {
|
readme.md
CHANGED
@@ -1,81 +1,87 @@
|
|
1 |
-
#
|
2 |
**Contributors:** [themeisle](https://profiles.wordpress.org/themeisle), [codeinwp](https://profiles.wordpress.org/codeinwp), [hardeepasrani](https://profiles.wordpress.org/hardeepasrani), [contactashish13](https://profiles.wordpress.org/contactashish13)
|
3 |
-
**Tags:**
|
4 |
**Requires at least:** 3.7
|
5 |
**Requires PHP:** 5.3
|
6 |
-
**Tested up to:** 5.
|
7 |
**Stable tag:** trunk
|
8 |
**License:** GPLv2 or later
|
9 |
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
-
|
12 |
-
FEEDZY RSS Feeds is an easy-to-use plugin giving you RSS aggregator and autoblogging functionality. Bring the best RSS feeds to your site.
|
13 |
|
14 |
## Description ##
|
15 |
|
16 |
-
## RSS
|
17 |
-
|
18 |
-
Feedzy is an easy-to-install RSS aggregator WordPress plugin which lets you collate content from all over the internet onto your site. Add your RSS feeds, and then use shortcodes and RSS feeds to get your site running within minutes.
|
19 |
|
20 |
-
|
|
|
21 |
|
22 |
-
##
|
23 |
|
24 |
-
**
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
|
|
27 |
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
|
32 |
-
|
33 |
-
No matter the platform, your content will be fully responsive across mobile and tablet.
|
34 |
|
|
|
35 |
|
36 |
-
**
|
37 |
-
|
38 |
-
|
39 |
-
**
|
40 |
-
|
41 |
-
|
42 |
-
**
|
43 |
-
|
|
|
44 |
|
|
|
45 |
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
> * Automatically add your affiliate links to RSS feeds for business autoblogging
|
52 |
-
> * Parse and display pricing from product feeds
|
53 |
-
> * Control your feed: blacklist specific keywords
|
54 |
-
> * Unlimited support and updates from our team for the duration of your licence
|
55 |
-
>
|
56 |
-
> **[Learn more about Feedzy Pro]( https://themeisle.com/plugins/feedzy-rss-feeds/ )**
|
57 |
|
58 |
-
## See how Feedzy PRO can integrate with your website
|
59 |
|
60 |
-
|
61 |
-
* [Shop feed – 3 columns layout](https://demo.themeisle.com/feedzy-rss-feeds/shop-feed/)
|
62 |
-
* [Feed categories – 1 columns layout](https://demo.themeisle.com/feedzy-rss-feeds/group-feeds-categories/)
|
63 |
-
* [Large image square grid – 2 columns layout](https://demo.themeisle.com/feedzy-rss-feeds/2-columns-large-images-square-grid/)
|
64 |
-
* [Square grid template – 3 columns layout](https://demo.themeisle.com/feedzy-rss-feeds/square-template/)
|
65 |
-
* [Round grid templates – 3 columns layout](https://demo.themeisle.com/feedzy-rss-feeds/round-grid-template/)
|
66 |
-
* [Standard grid layout – 2 columns layout](https://demo.themeisle.com/feedzy-rss-feeds/grid-layout-feed-items/)
|
67 |
-
* [Blog layout – 1 column layout](https://demo.themeisle.com/feedzy-rss-feeds/blog-layout/)
|
68 |
|
|
|
69 |
|
70 |
-
|
71 |
-
|
72 |
-
By activating this plugin, your cover image will be inserted into your RSS feeds, making it will easier for external sites to retrieve images from your feeds.
|
73 |
|
74 |
-
|
|
|
|
|
|
|
|
|
75 |
|
76 |
-
|
77 |
|
78 |
-
|
79 |
|
80 |
= Shortcode Parameters =
|
81 |
|
@@ -227,196 +233,205 @@ You have to check first if your feed is valid. Please test it here: https://vali
|
|
227 |
[http://docs.themeisle.com/article/640-how-to-use-feedzy-categories](http://docs.themeisle.com/article/640-how-to-use-feedzy-categories)
|
228 |
|
229 |
### How to add a read more link to Feedzy ###
|
230 |
-
[http://docs.themeisle.com/article/544-how-to-add-a-read-more-link-to-feedzy](http://docs.themeisle.com/article/544-how-to-add-a-read-more-link-to-feedzy)
|
231 |
|
232 |
-
= How to move Feedzy templates to your theme =
|
233 |
-
[http://docs.themeisle.com/article/573-how-to-move-feedzy-templates-to-your-theme](http://docs.themeisle.com/article/573-how-to-move-feedzy-templates-to-your-theme)
|
234 |
|
235 |
-
= How to eliminate duplicate feed items. =
|
236 |
-
[http://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-items](http://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-items)
|
237 |
|
238 |
-
= How to check whether the RSS feed is valid or not in Feedzy =
|
239 |
-
[http://docs.themeisle.com/article/716-feedzy-how-to-check-whether-the-rss-feed-is-valid-or-not](http://docs.themeisle.com/article/716-feedzy-how-to-check-whether-the-rss-feed-is-valid-or-not)
|
240 |
|
241 |
-
= How to change user agent in Feedzy =
|
242 |
-
[http://docs.themeisle.com/article/713-how-to-change-user-agent-in-feedzy](http://docs.themeisle.com/article/713-how-to-change-user-agent-in-feedzy)
|
243 |
|
244 |
-
= How to use proxy settings in Feedzy =
|
245 |
-
[http://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feezy](http://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feezy)
|
246 |
|
247 |
-
= How to import posts from feeds in Feedzy =
|
248 |
-
[http://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy](http://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy)
|
249 |
|
250 |
-
= Where can I find the import posts options in Feedzy =
|
251 |
-
[http://docs.themeisle.com/article/743-where-can-i-find-the-import-posts-options-in-feedzy](http://docs.themeisle.com/article/743-where-can-i-find-the-import-posts-options-in-feedzy)
|
252 |
|
253 |
-
= How to use WordAI to Rephrase RSS content in Feedzy =
|
254 |
-
[http://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy](http://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy)
|
255 |
|
256 |
-
= Install and use the premium version of Feedzy RSS Feeds =
|
257 |
-
[http://docs.themeisle.com/article/783-install-and-use-the-premium-version-of-feedzy-rss-feeds](http://docs.themeisle.com/article/783-install-and-use-the-premium-version-of-feedzy-rss-feeds)
|
258 |
|
259 |
-
= Feedzy RSS Feeds Documentation =
|
260 |
-
[https://docs.themeisle.com/article/658-feedzy-rss-feeds-documentation](https://docs.themeisle.com/article/658-feedzy-rss-feeds-documentation)
|
261 |
|
262 |
-
= What actions and filters are available in Feedzy =
|
263 |
-
[https://docs.themeisle.com/article/540-what-actions-and-filters-are-available-in-feedzy](https://docs.themeisle.com/article/540-what-actions-and-filters-are-available-in-feedzy)
|
264 |
|
265 |
-
= How to change thumbs size and aspect ratio Feedzy =
|
266 |
-
[https://docs.themeisle.com/article/551-how-to-change-thumbs-size-and-aspect-ratio-feedzy](https://docs.themeisle.com/article/551-how-to-change-thumbs-size-and-aspect-ratio-feedzy)
|
267 |
|
268 |
-
= How to display RSS feed time and date in local time =
|
269 |
-
[https://docs.themeisle.com/article/567-how-to-display-rss-feed-time-and-date-in-local-time](https://docs.themeisle.com/article/567-how-to-display-rss-feed-time-and-date-in-local-time)
|
270 |
|
271 |
-
= How to add a read more link to Feedzy =
|
272 |
-
[https://docs.themeisle.com/article/544-how-to-add-a-read-more-link-to-feedzy](https://docs.themeisle.com/article/544-how-to-add-a-read-more-link-to-feedzy)
|
273 |
|
274 |
-
= How to use feedzy categories =
|
275 |
-
[https://docs.themeisle.com/article/640-how-to-use-feedzy-categories](https://docs.themeisle.com/article/640-how-to-use-feedzy-categories)
|
276 |
|
277 |
-
= How to use your own inline css =
|
278 |
-
[https://docs.themeisle.com/article/546-how-to-use-your-own-inline-css](https://docs.themeisle.com/article/546-how-to-use-your-own-inline-css)
|
279 |
|
280 |
-
= How to change cache lifetime for a specific feed =
|
281 |
-
[https://docs.themeisle.com/article/547-how-to-change-cache-lifetime-for-a-specific-feed](https://docs.themeisle.com/article/547-how-to-change-cache-lifetime-for-a-specific-feed)
|
282 |
|
283 |
-
= How to remove featured image from blog feed =
|
284 |
-
[https://docs.themeisle.com/article/554-how-to-remove-featured-image-from-blog-feed](https://docs.themeisle.com/article/554-how-to-remove-featured-image-from-blog-feed)
|
285 |
|
286 |
-
= How to handle publication date and author content =
|
287 |
-
[https://docs.themeisle.com/article/549-how-to-handle-publication-date-and-author-content](https://docs.themeisle.com/article/549-how-to-handle-publication-date-and-author-content)
|
288 |
|
289 |
-
= How to keep html in feed items content =
|
290 |
-
[https://docs.themeisle.com/article/542-how-to-keep-html-in-feed-items-content](https://docs.themeisle.com/article/542-how-to-keep-html-in-feed-items-content)
|
291 |
|
292 |
-
= How to fix images that are not showing in the feed =
|
293 |
-
[https://docs.themeisle.com/article/666-how-to-fix-images-that-are-not-showing-in-the-feed](https://docs.themeisle.com/article/666-how-to-fix-images-that-are-not-showing-in-the-feed)
|
294 |
|
295 |
-
= How to display items in a random order =
|
296 |
-
[https://docs.themeisle.com/article/550-how-to-display-items-in-a-random-order](https://docs.themeisle.com/article/550-how-to-display-items-in-a-random-order)
|
297 |
|
298 |
-
= How to remove links =
|
299 |
-
[https://docs.themeisle.com/article/541-how-to-remove-links](https://docs.themeisle.com/article/541-how-to-remove-links)
|
300 |
|
301 |
-
= How to move Feedzy templates to your theme =
|
302 |
-
[https://docs.themeisle.com/article/573-how-to-move-feedzy-templates-to-your-theme](https://docs.themeisle.com/article/573-how-to-move-feedzy-templates-to-your-theme)
|
303 |
|
304 |
-
= How to remove plugin css =
|
305 |
-
[https://docs.themeisle.com/article/545-how-to-remove-plugin-css](https://docs.themeisle.com/article/545-how-to-remove-plugin-css)
|
306 |
|
307 |
-
= How to remove time from publication date =
|
308 |
-
[https://docs.themeisle.com/article/553-how-to-remove-time-from-publication-date](https://docs.themeisle.com/article/553-how-to-remove-time-from-publication-date)
|
309 |
|
310 |
-
= How to remove the end hellip =
|
311 |
-
[https://docs.themeisle.com/article/543-how-to-remove-the-end-hellip](https://docs.themeisle.com/article/543-how-to-remove-the-end-hellip)
|
312 |
|
313 |
-
= How to decode item title =
|
314 |
-
[https://docs.themeisle.com/article/548-how-to-decode-item-title](https://docs.themeisle.com/article/548-how-to-decode-item-title)
|
315 |
|
316 |
-
= How to sort feed items by title =
|
317 |
-
[https://docs.themeisle.com/article/633-how-to-sort-feed-items-by-title](https://docs.themeisle.com/article/633-how-to-sort-feed-items-by-title)
|
318 |
|
319 |
-
= How to import posts from feeds in Feedzy =
|
320 |
-
[https://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy](https://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy)
|
321 |
|
322 |
-
= How to change author url =
|
323 |
-
[https://docs.themeisle.com/article/636-how-to-change-author-url](https://docs.themeisle.com/article/636-how-to-change-author-url)
|
324 |
|
325 |
-
= How to eliminate duplicate feed items. =
|
326 |
-
[https://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-items](https://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-items)
|
327 |
|
328 |
-
= How to check whether the RSS feed is valid or not in Feedzy =
|
329 |
-
[https://docs.themeisle.com/article/716-how-to-check-whether-the-rss-feed-is-valid-or-not-in-feedzy](https://docs.themeisle.com/article/716-how-to-check-whether-the-rss-feed-is-valid-or-not-in-feedzy)
|
330 |
|
331 |
-
= How to change the blacklist image name =
|
332 |
-
[https://docs.themeisle.com/article/552-how-to-change-the-blacklist-image-name](https://docs.themeisle.com/article/552-how-to-change-the-blacklist-image-name)
|
333 |
|
334 |
-
= How to use proxy settings in Feedzy =
|
335 |
-
[https://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feedzy](https://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feedzy)
|
336 |
|
337 |
-
= Where can I find the import posts options in Feedzy =
|
338 |
-
[https://docs.themeisle.com/article/743-where-can-i-find-the-import-posts-options-in-feedzy](https://docs.themeisle.com/article/743-where-can-i-find-the-import-posts-options-in-feedzy)
|
339 |
|
340 |
-
= How to change user agent in Feedzy =
|
341 |
-
[https://docs.themeisle.com/article/713-how-to-change-user-agent-in-feedzy](https://docs.themeisle.com/article/713-how-to-change-user-agent-in-feedzy)
|
342 |
|
343 |
-
= How to use WordAI to Rephrase RSS content in Feedzy =
|
344 |
-
[https://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy](https://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy)
|
345 |
|
346 |
-
= Install and use the premium version of Feedzy RSS Feeds =
|
347 |
-
[https://docs.themeisle.com/article/783-install-and-use-the-premium-version-of-feedzy-rss-feeds](https://docs.themeisle.com/article/783-install-and-use-the-premium-version-of-feedzy-rss-feeds)
|
348 |
|
349 |
-
= How to sort feed items by date =
|
350 |
-
[https://docs.themeisle.com/article/817-how-to-sort-feed-items-by-date](https://docs.themeisle.com/article/817-how-to-sort-feed-items-by-date)
|
351 |
|
352 |
-
= How to add rel="nofollow" to feed links =
|
353 |
-
[https://docs.themeisle.com/article/839-how-to-add-relnofollow-to-feed-links](https://docs.themeisle.com/article/839-how-to-add-relnofollow-to-feed-links)
|
354 |
|
355 |
-
= What to do when you get Warning: ./cache is not writeable =
|
356 |
-
[https://docs.themeisle.com/article/840-what-to-do-when-you-get-warning-cache-is-not-writeable](https://docs.themeisle.com/article/840-what-to-do-when-you-get-warning-cache-is-not-writeable)
|
357 |
|
358 |
-
= How to exclude feeds with certain words in it =
|
359 |
-
[https://docs.themeisle.com/article/850-how-to-exclude-feeds-with-certain-words-in-it](https://docs.themeisle.com/article/850-how-to-exclude-feeds-with-certain-words-in-it)
|
360 |
|
361 |
-
= How to add canonical tags for imported posts =
|
362 |
-
[https://docs.themeisle.com/article/841-how-to-add-canonical-tags-for-imported-posts](https://docs.themeisle.com/article/841-how-to-add-canonical-tags-for-imported-posts)
|
363 |
|
364 |
-
= How to display thumbnail image from the feeds =
|
365 |
-
[https://docs.themeisle.com/article/871-how-to-display-thumbnail-image-from-the-feeds](https://docs.themeisle.com/article/871-how-to-display-thumbnail-image-from-the-feeds)
|
366 |
|
367 |
-
= How to change feed items order =
|
368 |
-
[https://docs.themeisle.com/article/864-how-to-change-feed-items-order](https://docs.themeisle.com/article/864-how-to-change-feed-items-order)
|
369 |
|
370 |
-
= How to use WordAI or SpinnerChief to Rephrase RSS content in Feedzy =
|
371 |
-
[https://docs.themeisle.com/article/746-how-to-use-wordai-or-spinnerchief-to-rephrase-rss-content-in-feedzy](https://docs.themeisle.com/article/746-how-to-use-wordai-or-spinnerchief-to-rephrase-rss-content-in-feedzy)
|
372 |
|
373 |
-
= How to add affiliate referrals to feed URLs in Feedzy =
|
374 |
-
[https://docs.themeisle.com/article/715-how-to-add-affiliate-referrals-to-feed-urls-in-feedzy](https://docs.themeisle.com/article/715-how-to-add-affiliate-referrals-to-feed-urls-in-feedzy)
|
375 |
|
376 |
-
= How price is displayed from the feed =
|
377 |
-
[https://docs.themeisle.com/article/923-how-price-is-displayed-from-the-feed](https://docs.themeisle.com/article/923-how-price-is-displayed-from-the-feed)
|
378 |
|
379 |
-
= How to find Feed URL for Feedzy RSS Feeds =
|
380 |
-
[https://docs.themeisle.com/article/799-how-to-find-feed-url-for-feedzy-rss-feeds](https://docs.themeisle.com/article/799-how-to-find-feed-url-for-feedzy-rss-feeds)
|
381 |
|
382 |
-
= In Feedzy how do I... =
|
383 |
-
[https://docs.themeisle.com/article/942-in-feedzy-how-do-i](https://docs.themeisle.com/article/942-in-feedzy-how-do-i)
|
384 |
|
385 |
-
= How to import iTunes audio feed =
|
386 |
-
[https://docs.themeisle.com/article/1041-how-to-import-itunes-audio-feed](https://docs.themeisle.com/article/1041-how-to-import-itunes-audio-feed)
|
387 |
|
388 |
-
= Feedzy RSS Feeds Documentation =
|
389 |
-
[https://docs.themeisle.com/article/658-feedzy-rss-feeds](https://docs.themeisle.com/article/658-feedzy-rss-feeds)
|
|
|
|
|
|
|
390 |
|
391 |
-
= How to
|
392 |
-
[https://docs.themeisle.com/article/
|
393 |
|
394 |
-
= How to
|
395 |
-
[https://docs.themeisle.com/article/
|
396 |
|
397 |
-
= How to
|
398 |
-
[https://docs.themeisle.com/article/
|
399 |
|
400 |
-
= How to
|
401 |
-
[https://docs.themeisle.com/article/
|
402 |
|
403 |
-
= How to add
|
404 |
-
[https://docs.themeisle.com/article/
|
405 |
|
406 |
-
= How to
|
407 |
-
[https://docs.themeisle.com/article/
|
408 |
|
409 |
-
= How to
|
410 |
-
[https://docs.themeisle.com/article/
|
411 |
|
412 |
-
= How to
|
413 |
-
[https://docs.themeisle.com/article/
|
414 |
|
415 |
-
= How to
|
416 |
-
[https://docs.themeisle.com/article/
|
417 |
|
418 |
-
=
|
419 |
-
[https://docs.themeisle.com/article/
|
|
|
|
|
|
|
|
|
|
|
|
|
420 |
|
421 |
== Screenshots ==
|
422 |
|
@@ -426,7 +441,10 @@ You have to check first if your feed is valid. Please test it here: https://vali
|
|
426 |
4. Widget render
|
427 |
|
428 |
|
429 |
-
|
|
|
|
|
|
|
430 |
### 3.3.11 - 2019-09-24 ###
|
431 |
|
432 |
* Fix issue with replacing ellipsis
|
@@ -530,19 +548,19 @@ You have to check first if your feed is valid. Please test it here: https://vali
|
|
530 |
### 3.2.10 - 2018-04-02 ###
|
531 |
|
532 |
* Adds shortcode attribute for feed items order ( title ASC/DESC, date ASC/DESC).
|
533 |
-
* Improve documentation and examples.
|
534 |
|
535 |
|
536 |
### 3.2.9 - 2018-03-07 ###
|
537 |
|
538 |
-
* Automatically fix deprecated google news feeds.
|
539 |
* Improve compatibility with the pro version.
|
540 |
|
541 |
|
542 |
### 3.2.8 - 2018-02-20 ###
|
543 |
|
544 |
* Fix issue with medium feeds.
|
545 |
-
* Improves extensibility using various hooks.
|
546 |
* Fix feeds without schema protocol.
|
547 |
|
548 |
|
@@ -573,14 +591,14 @@ You have to check first if your feed is valid. Please test it here: https://vali
|
|
573 |
|
574 |
### 3.2.1 - 2017-10-12 ###
|
575 |
|
576 |
-
* Adds global settings page.
|
577 |
-
* Adds User Agent and Proxy settings.
|
578 |
* Fix for some edge cases regarding images in the feed.
|
579 |
|
580 |
|
581 |
### 3.2.0 - 2017-08-17 ###
|
582 |
|
583 |
-
* Fix for image URL issue following some strange patterns.
|
584 |
* Added fallback for broken feed, now if one feed from the list is not working, others will will be used.
|
585 |
* Added shortcode parameter for feed cache control.
|
586 |
|
@@ -850,4 +868,4 @@ You have to check first if your feed is valid. Please test it here: https://vali
|
|
850 |
* IMPORTANT: You have to reactivate the plugin after its update!
|
851 |
|
852 |
### 1.0 ###
|
853 |
-
* First release.
|
1 |
+
# RSS Aggregator by Feedzy - Powerful WP Autoblogging and News Aggregator #
|
2 |
**Contributors:** [themeisle](https://profiles.wordpress.org/themeisle), [codeinwp](https://profiles.wordpress.org/codeinwp), [hardeepasrani](https://profiles.wordpress.org/hardeepasrani), [contactashish13](https://profiles.wordpress.org/contactashish13)
|
3 |
+
**Tags:** rss aggregator, news aggregator, autoblogging, feed to post, rss import
|
4 |
**Requires at least:** 3.7
|
5 |
**Requires PHP:** 5.3
|
6 |
+
**Tested up to:** 5.3
|
7 |
**Stable tag:** trunk
|
8 |
**License:** GPLv2 or later
|
9 |
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
+
The most powerful WordPress RSS aggregator, helping you curate content, autoblog, import and display unlimited RSS feeds within a few minutes.
|
|
|
12 |
|
13 |
## Description ##
|
14 |
|
15 |
+
## FEEDZY - The Powerful RSS Aggregator and Content Aggregator Plugin for Autoblogging ##
|
|
|
|
|
16 |
|
17 |
+
FEEDZY RSS Aggregator helps you aggregate unlimited RSS feeds and automatically publish them on your site within a few minutes.
|
18 |
+
With FEEDZY RSS Aggregator, you can sit back, let your site autoblog and always stay fresh with new content, which in return helps improve content marketing, boost your SEO, increase audience’s engagement, and probably earn more money.
|
19 |
|
20 |
+
## What you can do with Feedzy RSS Aggregator: ##
|
21 |
|
22 |
+
* **Automatically import** and aggregate unlimited RSS feeds from unlimited sources
|
23 |
+
* **Bulk import and organize** multiple feed sources of similar topics into Categories. See how our user, Barry Seward, loves this feature [here](https://wordpress.org/support/topic/works-great-6051/)
|
24 |
+
* **Easily display RSS feeds** using shortcodes, Gutenberg blocks, or widgets in your third-party page builders like Elementor
|
25 |
+
* **Import images** with your RSS feeds or use your own image/logo for feeds without image. We know visuals are important and do not want your site to have a boring list of text and links.
|
26 |
+
* **Control number of items** you want to display for a feed source. Just want to display 1 article or 20 articles in a block? You’ve got it with one click.
|
27 |
+
* Worried if the imported feed articles’ titles are too long and might not look nice on your site? Change them with the **Title Character Limit** function.
|
28 |
+
* Choose your own **caching** time and how often you want to pull RSS feeds to ensure the **best performance** for your site.
|
29 |
+
* Create a **sidebar** of your imported feed items.
|
30 |
+
* **Control which meta** fields you want to display, such as author, date and time of the RSS feed.
|
31 |
+
* **Responsive** content across platforms.
|
32 |
|
33 |
+
## You should use FEEDZY RSS Aggregator if: ##
|
34 |
|
35 |
+
* You own a news site; you want a WP news aggregator to make sure your site always updated with the latest news
|
36 |
+
* You own a blog; you need a WP content aggregator to autoblog and keep your audience engaged with fresh content
|
37 |
+
* You want to improve your SEO rankings. See how the SEO expert, MOZ, talked about 10 reasons “[How Fresh Content May Influence Google Rankings”](https://moz.com/blog/google-fresh-factor-new)“
|
38 |
+
* You develop a site for your client and just want to quickly demo a news feed of frequently updated content
|
39 |
+
* You build a company website and want a news/blog page to enhance company’s reputation and SEO. Focus on your business and leave the content marketing work to FEEDZY RSS Aggregator.
|
40 |
+
* You run an affiliate business or want to earn extra from RSS affiliate marketing feeds
|
41 |
+
* You need a simple but comprehensive solution to curate anything in your niche, such as property listing for a real estate website, product listing for an affiliated e-commerce site, etc.
|
42 |
+
* It does not matter which industry or topic your site is about. +30,000 users have used FEEDZY RSS Aggregator to curate content from everywhere, such as finance, technology, food, home furniture, e-commerce products, religion, sports, and so on.
|
43 |
+
* You want to earn more money, thanks to the benefits above.
|
44 |
+
* Note: to learn more about how to use curated content to boost your SEO in a proper and effective way, read more [here](http://www.curata.com/blog/content-curation-seo-dos-and-donts/).
|
45 |
|
46 |
|
47 |
+
## More powerful with FEEDZY RSS Aggregator’s premium features ##
|
|
|
48 |
|
49 |
+
If you love FEEDZY RSS Aggregator, why not bring your site to the next level with more powerful tools to boost your SEO and keep your audience on your site for longer.
|
50 |
|
51 |
+
* **[Feed to post](https://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy)** (our most loved feature): automatically convert RSS feed items to Wordpress pages, posts, and custom post type.
|
52 |
+
* **[Keyword filter](https://docs.themeisle.com/article/942-in-feedzy-how-do-i#specific-keywords)**: you can choose to import feed to post and display content if they include or exclude certain keywords.
|
53 |
+
* **Map the imported feed elements to your post elements**: totally control and customize how your feed to post, such as using the feed’s image or your image as the featured image, importing only the feed’s content or both the content and image into the post content, creating post drafts first to review or publishing right away, and so many more.
|
54 |
+
* **[Full text RSS feeds import (with image)](https://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy)** (with image): by extracting the entire HTML from each feed item, you can import full text content to post, not just the feed excerpt.
|
55 |
+
* **[Multiple feed templates](https://demo.themeisle.com/feedzy-rss-feeds/)**: choose the best template for each feed, such as standard grid layout, blog layout, online shop layout, or audio playback (soundcloud) playout.
|
56 |
+
* **[WordAI and SpinnerChief integration](https://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy)** to avoid duplicated content.
|
57 |
+
* **[Parse and display pricings](https://docs.themeisle.com/article/923-how-price-is-displayed-from-the-feed)** for online shop and product feeds.
|
58 |
+
* **[Add affiliate links and referral parameters](https://docs.themeisle.com/article/715-feedzy-how-to-add-affiliate-referrals-to-feed-urls)** for your affiliate business.
|
59 |
+
* Still skeptical? Ask your pre-sales questions here and we will get back shortly, or purchase with peace of mind and try it out yourself. We offer **30-day-no-questions-asked money back guarantee.**
|
60 |
|
61 |
+
## We’re here for you, and we take all feedback seriously ##
|
62 |
|
63 |
+
* [Knowledge Base](https://docs.themeisle.com/category/712-feedzy): we’ve created a complete documentation library and we’re still constantly updating with new tutorials.
|
64 |
+
* [Youtube tutorials](https://www.youtube.com/channel/UCAQcBsP3h6p5yXgFap4LEGA/search?query=feedzy): don’t like reading? We’ve created some Youtube tutorials to help you get started with FEEDZY RSS Aggregator plugin step by step.
|
65 |
+
* [Support forum](https://wordpress.org/support/plugin/feedzy-rss-feeds/): we offer support to free version user here and try to reply within one business day.
|
66 |
+
* [Premium support](https://themeisle.com/contact/): we offer priority support for Developer license customers and live chat support for Agency license customers.
|
67 |
+
* If you have any feedback or feature suggestions for FEEDZY RSS Aggregator, don’t hesitate to tell us. We read all feedback and ideas.
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
|
|
|
69 |
|
70 |
+
## You’re in good hands ##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
|
72 |
+
FEEDZY RSS Aggregator is one of many great products by [ThemeIsle](https://themeisle.com/). Join over 30,000 FEEDZY RSS Aggregator users and half of a million ThemeIsle users from all over the world.
|
73 |
|
74 |
+
See what real users talk about us:
|
|
|
|
|
75 |
|
76 |
+
* FEEDZY RSS Aggregator in [WordPress Daily with Tom Mullins](https://www.youtube.com/watch?v=J7q_g0N7Efc)
|
77 |
+
* [Lester Diaz showed how to make $200 per day](https://www.youtube.com/watch?v=WC2Tc830yMs) using FEEDZY RSS Aggregator
|
78 |
+
* [“Simple and beautiful”](https://wordpress.org/support/topic/simple-and-beautiful-58/) and 5 stars from a power user using FEEDZY RSS Aggregator for blogspot
|
79 |
+
* [“Excellent plugin”](https://wordpress.org/support/topic/excellent-plugin-4867/) and 5 stars from a power user using FEEDZY RSS Aggregator for Mailchimp mailing list
|
80 |
+
* [“Robust tool but also works great for simple needs”](https://wordpress.org/support/topic/robust-tool-but-also-works-great-for-simple-needs/) and 5 stars from a power user using FEEDZY RSS Aggregator to display recent posts with excerpts
|
81 |
|
82 |
+
## Technical note ##
|
83 |
|
84 |
+
FEEDZY RSS Aggregator supports any additional library and takes up minimal space in your cache/CSS to ensure high performance. This ensures compatibility with any hosting provider that supports WordPress, but if for any reason it doesn’t work for yours feel free to [create a new support topic](https://wordpress.org/support/plugin/feedzy-rss-feeds/#new-post).
|
85 |
|
86 |
= Shortcode Parameters =
|
87 |
|
233 |
[http://docs.themeisle.com/article/640-how-to-use-feedzy-categories](http://docs.themeisle.com/article/640-how-to-use-feedzy-categories)
|
234 |
|
235 |
### How to add a read more link to Feedzy ###
|
236 |
+
[http://docs.themeisle.com/article/544-how-to-add-a-read-more-link-to-feedzy](http://docs.themeisle.com/article/544-how-to-add-a-read-more-link-to-feedzy)
|
237 |
|
238 |
+
= How to move Feedzy templates to your theme =
|
239 |
+
[http://docs.themeisle.com/article/573-how-to-move-feedzy-templates-to-your-theme](http://docs.themeisle.com/article/573-how-to-move-feedzy-templates-to-your-theme)
|
240 |
|
241 |
+
= How to eliminate duplicate feed items. =
|
242 |
+
[http://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-items](http://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-items)
|
243 |
|
244 |
+
= How to check whether the RSS feed is valid or not in Feedzy =
|
245 |
+
[http://docs.themeisle.com/article/716-feedzy-how-to-check-whether-the-rss-feed-is-valid-or-not](http://docs.themeisle.com/article/716-feedzy-how-to-check-whether-the-rss-feed-is-valid-or-not)
|
246 |
|
247 |
+
= How to change user agent in Feedzy =
|
248 |
+
[http://docs.themeisle.com/article/713-how-to-change-user-agent-in-feedzy](http://docs.themeisle.com/article/713-how-to-change-user-agent-in-feedzy)
|
249 |
|
250 |
+
= How to use proxy settings in Feedzy =
|
251 |
+
[http://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feezy](http://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feezy)
|
252 |
|
253 |
+
= How to import posts from feeds in Feedzy =
|
254 |
+
[http://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy](http://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy)
|
255 |
|
256 |
+
= Where can I find the import posts options in Feedzy =
|
257 |
+
[http://docs.themeisle.com/article/743-where-can-i-find-the-import-posts-options-in-feedzy](http://docs.themeisle.com/article/743-where-can-i-find-the-import-posts-options-in-feedzy)
|
258 |
|
259 |
+
= How to use WordAI to Rephrase RSS content in Feedzy =
|
260 |
+
[http://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy](http://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy)
|
261 |
|
262 |
+
= Install and use the premium version of Feedzy RSS Feeds =
|
263 |
+
[http://docs.themeisle.com/article/783-install-and-use-the-premium-version-of-feedzy-rss-feeds](http://docs.themeisle.com/article/783-install-and-use-the-premium-version-of-feedzy-rss-feeds)
|
264 |
|
265 |
+
= Feedzy RSS Feeds Documentation =
|
266 |
+
[https://docs.themeisle.com/article/658-feedzy-rss-feeds-documentation](https://docs.themeisle.com/article/658-feedzy-rss-feeds-documentation)
|
267 |
|
268 |
+
= What actions and filters are available in Feedzy =
|
269 |
+
[https://docs.themeisle.com/article/540-what-actions-and-filters-are-available-in-feedzy](https://docs.themeisle.com/article/540-what-actions-and-filters-are-available-in-feedzy)
|
270 |
|
271 |
+
= How to change thumbs size and aspect ratio Feedzy =
|
272 |
+
[https://docs.themeisle.com/article/551-how-to-change-thumbs-size-and-aspect-ratio-feedzy](https://docs.themeisle.com/article/551-how-to-change-thumbs-size-and-aspect-ratio-feedzy)
|
273 |
|
274 |
+
= How to display RSS feed time and date in local time =
|
275 |
+
[https://docs.themeisle.com/article/567-how-to-display-rss-feed-time-and-date-in-local-time](https://docs.themeisle.com/article/567-how-to-display-rss-feed-time-and-date-in-local-time)
|
276 |
|
277 |
+
= How to add a read more link to Feedzy =
|
278 |
+
[https://docs.themeisle.com/article/544-how-to-add-a-read-more-link-to-feedzy](https://docs.themeisle.com/article/544-how-to-add-a-read-more-link-to-feedzy)
|
279 |
|
280 |
+
= How to use feedzy categories =
|
281 |
+
[https://docs.themeisle.com/article/640-how-to-use-feedzy-categories](https://docs.themeisle.com/article/640-how-to-use-feedzy-categories)
|
282 |
|
283 |
+
= How to use your own inline css =
|
284 |
+
[https://docs.themeisle.com/article/546-how-to-use-your-own-inline-css](https://docs.themeisle.com/article/546-how-to-use-your-own-inline-css)
|
285 |
|
286 |
+
= How to change cache lifetime for a specific feed =
|
287 |
+
[https://docs.themeisle.com/article/547-how-to-change-cache-lifetime-for-a-specific-feed](https://docs.themeisle.com/article/547-how-to-change-cache-lifetime-for-a-specific-feed)
|
288 |
|
289 |
+
= How to remove featured image from blog feed =
|
290 |
+
[https://docs.themeisle.com/article/554-how-to-remove-featured-image-from-blog-feed](https://docs.themeisle.com/article/554-how-to-remove-featured-image-from-blog-feed)
|
291 |
|
292 |
+
= How to handle publication date and author content =
|
293 |
+
[https://docs.themeisle.com/article/549-how-to-handle-publication-date-and-author-content](https://docs.themeisle.com/article/549-how-to-handle-publication-date-and-author-content)
|
294 |
|
295 |
+
= How to keep html in feed items content =
|
296 |
+
[https://docs.themeisle.com/article/542-how-to-keep-html-in-feed-items-content](https://docs.themeisle.com/article/542-how-to-keep-html-in-feed-items-content)
|
297 |
|
298 |
+
= How to fix images that are not showing in the feed =
|
299 |
+
[https://docs.themeisle.com/article/666-how-to-fix-images-that-are-not-showing-in-the-feed](https://docs.themeisle.com/article/666-how-to-fix-images-that-are-not-showing-in-the-feed)
|
300 |
|
301 |
+
= How to display items in a random order =
|
302 |
+
[https://docs.themeisle.com/article/550-how-to-display-items-in-a-random-order](https://docs.themeisle.com/article/550-how-to-display-items-in-a-random-order)
|
303 |
|
304 |
+
= How to remove links =
|
305 |
+
[https://docs.themeisle.com/article/541-how-to-remove-links](https://docs.themeisle.com/article/541-how-to-remove-links)
|
306 |
|
307 |
+
= How to move Feedzy templates to your theme =
|
308 |
+
[https://docs.themeisle.com/article/573-how-to-move-feedzy-templates-to-your-theme](https://docs.themeisle.com/article/573-how-to-move-feedzy-templates-to-your-theme)
|
309 |
|
310 |
+
= How to remove plugin css =
|
311 |
+
[https://docs.themeisle.com/article/545-how-to-remove-plugin-css](https://docs.themeisle.com/article/545-how-to-remove-plugin-css)
|
312 |
|
313 |
+
= How to remove time from publication date =
|
314 |
+
[https://docs.themeisle.com/article/553-how-to-remove-time-from-publication-date](https://docs.themeisle.com/article/553-how-to-remove-time-from-publication-date)
|
315 |
|
316 |
+
= How to remove the end hellip =
|
317 |
+
[https://docs.themeisle.com/article/543-how-to-remove-the-end-hellip](https://docs.themeisle.com/article/543-how-to-remove-the-end-hellip)
|
318 |
|
319 |
+
= How to decode item title =
|
320 |
+
[https://docs.themeisle.com/article/548-how-to-decode-item-title](https://docs.themeisle.com/article/548-how-to-decode-item-title)
|
321 |
|
322 |
+
= How to sort feed items by title =
|
323 |
+
[https://docs.themeisle.com/article/633-how-to-sort-feed-items-by-title](https://docs.themeisle.com/article/633-how-to-sort-feed-items-by-title)
|
324 |
|
325 |
+
= How to import posts from feeds in Feedzy =
|
326 |
+
[https://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy](https://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy)
|
327 |
|
328 |
+
= How to change author url =
|
329 |
+
[https://docs.themeisle.com/article/636-how-to-change-author-url](https://docs.themeisle.com/article/636-how-to-change-author-url)
|
330 |
|
331 |
+
= How to eliminate duplicate feed items. =
|
332 |
+
[https://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-items](https://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-items)
|
333 |
|
334 |
+
= How to check whether the RSS feed is valid or not in Feedzy =
|
335 |
+
[https://docs.themeisle.com/article/716-how-to-check-whether-the-rss-feed-is-valid-or-not-in-feedzy](https://docs.themeisle.com/article/716-how-to-check-whether-the-rss-feed-is-valid-or-not-in-feedzy)
|
336 |
|
337 |
+
= How to change the blacklist image name =
|
338 |
+
[https://docs.themeisle.com/article/552-how-to-change-the-blacklist-image-name](https://docs.themeisle.com/article/552-how-to-change-the-blacklist-image-name)
|
339 |
|
340 |
+
= How to use proxy settings in Feedzy =
|
341 |
+
[https://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feedzy](https://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feedzy)
|
342 |
|
343 |
+
= Where can I find the import posts options in Feedzy =
|
344 |
+
[https://docs.themeisle.com/article/743-where-can-i-find-the-import-posts-options-in-feedzy](https://docs.themeisle.com/article/743-where-can-i-find-the-import-posts-options-in-feedzy)
|
345 |
|
346 |
+
= How to change user agent in Feedzy =
|
347 |
+
[https://docs.themeisle.com/article/713-how-to-change-user-agent-in-feedzy](https://docs.themeisle.com/article/713-how-to-change-user-agent-in-feedzy)
|
348 |
|
349 |
+
= How to use WordAI to Rephrase RSS content in Feedzy =
|
350 |
+
[https://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy](https://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy)
|
351 |
|
352 |
+
= Install and use the premium version of Feedzy RSS Feeds =
|
353 |
+
[https://docs.themeisle.com/article/783-install-and-use-the-premium-version-of-feedzy-rss-feeds](https://docs.themeisle.com/article/783-install-and-use-the-premium-version-of-feedzy-rss-feeds)
|
354 |
|
355 |
+
= How to sort feed items by date =
|
356 |
+
[https://docs.themeisle.com/article/817-how-to-sort-feed-items-by-date](https://docs.themeisle.com/article/817-how-to-sort-feed-items-by-date)
|
357 |
|
358 |
+
= How to add rel="nofollow" to feed links =
|
359 |
+
[https://docs.themeisle.com/article/839-how-to-add-relnofollow-to-feed-links](https://docs.themeisle.com/article/839-how-to-add-relnofollow-to-feed-links)
|
360 |
|
361 |
+
= What to do when you get Warning: ./cache is not writeable =
|
362 |
+
[https://docs.themeisle.com/article/840-what-to-do-when-you-get-warning-cache-is-not-writeable](https://docs.themeisle.com/article/840-what-to-do-when-you-get-warning-cache-is-not-writeable)
|
363 |
|
364 |
+
= How to exclude feeds with certain words in it =
|
365 |
+
[https://docs.themeisle.com/article/850-how-to-exclude-feeds-with-certain-words-in-it](https://docs.themeisle.com/article/850-how-to-exclude-feeds-with-certain-words-in-it)
|
366 |
|
367 |
+
= How to add canonical tags for imported posts =
|
368 |
+
[https://docs.themeisle.com/article/841-how-to-add-canonical-tags-for-imported-posts](https://docs.themeisle.com/article/841-how-to-add-canonical-tags-for-imported-posts)
|
369 |
|
370 |
+
= How to display thumbnail image from the feeds =
|
371 |
+
[https://docs.themeisle.com/article/871-how-to-display-thumbnail-image-from-the-feeds](https://docs.themeisle.com/article/871-how-to-display-thumbnail-image-from-the-feeds)
|
372 |
|
373 |
+
= How to change feed items order =
|
374 |
+
[https://docs.themeisle.com/article/864-how-to-change-feed-items-order](https://docs.themeisle.com/article/864-how-to-change-feed-items-order)
|
375 |
|
376 |
+
= How to use WordAI or SpinnerChief to Rephrase RSS content in Feedzy =
|
377 |
+
[https://docs.themeisle.com/article/746-how-to-use-wordai-or-spinnerchief-to-rephrase-rss-content-in-feedzy](https://docs.themeisle.com/article/746-how-to-use-wordai-or-spinnerchief-to-rephrase-rss-content-in-feedzy)
|
378 |
|
379 |
+
= How to add affiliate referrals to feed URLs in Feedzy =
|
380 |
+
[https://docs.themeisle.com/article/715-how-to-add-affiliate-referrals-to-feed-urls-in-feedzy](https://docs.themeisle.com/article/715-how-to-add-affiliate-referrals-to-feed-urls-in-feedzy)
|
381 |
|
382 |
+
= How price is displayed from the feed =
|
383 |
+
[https://docs.themeisle.com/article/923-how-price-is-displayed-from-the-feed](https://docs.themeisle.com/article/923-how-price-is-displayed-from-the-feed)
|
384 |
|
385 |
+
= How to find Feed URL for Feedzy RSS Feeds =
|
386 |
+
[https://docs.themeisle.com/article/799-how-to-find-feed-url-for-feedzy-rss-feeds](https://docs.themeisle.com/article/799-how-to-find-feed-url-for-feedzy-rss-feeds)
|
387 |
|
388 |
+
= In Feedzy how do I... =
|
389 |
+
[https://docs.themeisle.com/article/942-in-feedzy-how-do-i](https://docs.themeisle.com/article/942-in-feedzy-how-do-i)
|
390 |
|
391 |
+
= How to import iTunes audio feed =
|
392 |
+
[https://docs.themeisle.com/article/1041-how-to-import-itunes-audio-feed](https://docs.themeisle.com/article/1041-how-to-import-itunes-audio-feed)
|
393 |
|
394 |
+
= Feedzy RSS Feeds Documentation =
|
395 |
+
[https://docs.themeisle.com/article/658-feedzy-rss-feeds](https://docs.themeisle.com/article/658-feedzy-rss-feeds)
|
396 |
+
|
397 |
+
= How to check whether the RSS feed is valid or not in Feedzy =
|
398 |
+
[https://docs.themeisle.com/article/716-feedzy-how-to-check-whether-the-rss-feed-is-valid-or-not](https://docs.themeisle.com/article/716-feedzy-how-to-check-whether-the-rss-feed-is-valid-or-not)
|
399 |
|
400 |
+
= How to change thumbs size and aspect ratio Feedzy =
|
401 |
+
[https://docs.themeisle.com/article/551-how-to-change-thumbs-size-and-aspect-ratio](https://docs.themeisle.com/article/551-how-to-change-thumbs-size-and-aspect-ratio)
|
402 |
|
403 |
+
= How to use proxy settings in Feedzy =
|
404 |
+
[https://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feezy](https://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feezy)
|
405 |
|
406 |
+
= How to decode item title =
|
407 |
+
[https://docs.themeisle.com/article/548-how-to-decode-item-title-with](https://docs.themeisle.com/article/548-how-to-decode-item-title-with)
|
408 |
|
409 |
+
= How to add affiliate referrals to feed URLs in Feedzy =
|
410 |
+
[https://docs.themeisle.com/article/715-feedzy-how-to-add-affiliate-referrals-to-feed-urls](https://docs.themeisle.com/article/715-feedzy-how-to-add-affiliate-referrals-to-feed-urls)
|
411 |
|
412 |
+
= How to add rel="nofollow" to feed links =
|
413 |
+
[https://docs.themeisle.com/article/839-how-to-add-rel-nofollow-to-feed-links](https://docs.themeisle.com/article/839-how-to-add-rel-nofollow-to-feed-links)
|
414 |
|
415 |
+
= How to import iTunes audio feed =
|
416 |
+
[https://docs.themeisle.com/article/1041-import-itunes-audio-feed](https://docs.themeisle.com/article/1041-import-itunes-audio-feed)
|
417 |
|
418 |
+
= How to link featured image to original post in Slider Revolution =
|
419 |
+
[https://docs.themeisle.com/article/1069-how-to-link-featured-image-to-original-post-in-slider-revolution](https://docs.themeisle.com/article/1069-how-to-link-featured-image-to-original-post-in-slider-revolution)
|
420 |
|
421 |
+
= How to display author, date, time (or a combination) from the feed =
|
422 |
+
[https://docs.themeisle.com/article/1089-how-to-display-author-date-or-time-from-the-feed](https://docs.themeisle.com/article/1089-how-to-display-author-date-or-time-from-the-feed)
|
423 |
|
424 |
+
= How to get videos from YouTube with Feedzy =
|
425 |
+
[https://docs.themeisle.com/article/1113-how-to-get-videos-from-youtube-with-feedzy](https://docs.themeisle.com/article/1113-how-to-get-videos-from-youtube-with-feedzy)
|
426 |
|
427 |
+
= Feedzy RSS Feeds Documentation =
|
428 |
+
[https://docs.themeisle.com/article/1119-feedzy-rss-feeds-documentation](https://docs.themeisle.com/article/1119-feedzy-rss-feeds-documentation)
|
429 |
+
|
430 |
+
= How to use Feed to Post feature in Feedzy =
|
431 |
+
[https://docs.themeisle.com/article/1154-how-to-use-feed-to-post-feature-in-feedzy](https://docs.themeisle.com/article/1154-how-to-use-feed-to-post-feature-in-feedzy)
|
432 |
+
|
433 |
+
= Feedzy Troubleshooting Guide =
|
434 |
+
[https://docs.themeisle.com/article/1155-feedzy-troubleshooting-guide](https://docs.themeisle.com/article/1155-feedzy-troubleshooting-guide)
|
435 |
|
436 |
== Screenshots ==
|
437 |
|
441 |
4. Widget render
|
442 |
|
443 |
|
444 |
+
### 3.3.12 - 2019-11-11 ###
|
445 |
+
|
446 |
+
* Tested up to 5.3
|
447 |
+
|
448 |
### 3.3.11 - 2019-09-24 ###
|
449 |
|
450 |
* Fix issue with replacing ellipsis
|
548 |
### 3.2.10 - 2018-04-02 ###
|
549 |
|
550 |
* Adds shortcode attribute for feed items order ( title ASC/DESC, date ASC/DESC).
|
551 |
+
* Improve documentation and examples.
|
552 |
|
553 |
|
554 |
### 3.2.9 - 2018-03-07 ###
|
555 |
|
556 |
+
* Automatically fix deprecated google news feeds.
|
557 |
* Improve compatibility with the pro version.
|
558 |
|
559 |
|
560 |
### 3.2.8 - 2018-02-20 ###
|
561 |
|
562 |
* Fix issue with medium feeds.
|
563 |
+
* Improves extensibility using various hooks.
|
564 |
* Fix feeds without schema protocol.
|
565 |
|
566 |
|
591 |
|
592 |
### 3.2.1 - 2017-10-12 ###
|
593 |
|
594 |
+
* Adds global settings page.
|
595 |
+
* Adds User Agent and Proxy settings.
|
596 |
* Fix for some edge cases regarding images in the feed.
|
597 |
|
598 |
|
599 |
### 3.2.0 - 2017-08-17 ###
|
600 |
|
601 |
+
* Fix for image URL issue following some strange patterns.
|
602 |
* Added fallback for broken feed, now if one feed from the list is not working, others will will be used.
|
603 |
* Added shortcode parameter for feed cache control.
|
604 |
|
868 |
* IMPORTANT: You have to reactivate the plugin after its update!
|
869 |
|
870 |
### 1.0 ###
|
871 |
+
* First release.
|
readme.txt
CHANGED
@@ -1,81 +1,87 @@
|
|
1 |
-
===
|
2 |
Contributors: themeisle,codeinwp,hardeepasrani,contactashish13
|
3 |
-
Tags:
|
4 |
Requires at least: 3.7
|
5 |
Requires PHP: 5.3
|
6 |
-
Tested up to: 5.
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
-
|
12 |
-
FEEDZY RSS Feeds is an easy-to-use plugin giving you RSS aggregator and autoblogging functionality. Bring the best RSS feeds to your site.
|
13 |
|
14 |
## Description ##
|
15 |
|
16 |
-
## RSS
|
17 |
-
|
18 |
-
Feedzy is an easy-to-install RSS aggregator WordPress plugin which lets you collate content from all over the internet onto your site. Add your RSS feeds, and then use shortcodes and RSS feeds to get your site running within minutes.
|
19 |
|
20 |
-
|
|
|
21 |
|
22 |
-
##
|
23 |
|
24 |
-
**
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
|
|
27 |
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
|
32 |
-
|
33 |
-
No matter the platform, your content will be fully responsive across mobile and tablet.
|
34 |
|
|
|
35 |
|
36 |
-
**
|
37 |
-
|
38 |
-
|
39 |
-
**
|
40 |
-
|
41 |
-
|
42 |
-
**
|
43 |
-
|
|
|
44 |
|
|
|
45 |
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
> * Automatically add your affiliate links to RSS feeds for business autoblogging
|
52 |
-
> * Parse and display pricing from product feeds
|
53 |
-
> * Control your feed: blacklist specific keywords
|
54 |
-
> * Unlimited support and updates from our team for the duration of your licence
|
55 |
-
>
|
56 |
-
> **[Learn more about Feedzy Pro]( https://themeisle.com/plugins/feedzy-rss-feeds/ )**
|
57 |
|
58 |
-
## See how Feedzy PRO can integrate with your website
|
59 |
|
60 |
-
|
61 |
-
* [Shop feed – 3 columns layout](https://demo.themeisle.com/feedzy-rss-feeds/shop-feed/)
|
62 |
-
* [Feed categories – 1 columns layout](https://demo.themeisle.com/feedzy-rss-feeds/group-feeds-categories/)
|
63 |
-
* [Large image square grid – 2 columns layout](https://demo.themeisle.com/feedzy-rss-feeds/2-columns-large-images-square-grid/)
|
64 |
-
* [Square grid template – 3 columns layout](https://demo.themeisle.com/feedzy-rss-feeds/square-template/)
|
65 |
-
* [Round grid templates – 3 columns layout](https://demo.themeisle.com/feedzy-rss-feeds/round-grid-template/)
|
66 |
-
* [Standard grid layout – 2 columns layout](https://demo.themeisle.com/feedzy-rss-feeds/grid-layout-feed-items/)
|
67 |
-
* [Blog layout – 1 column layout](https://demo.themeisle.com/feedzy-rss-feeds/blog-layout/)
|
68 |
|
|
|
69 |
|
70 |
-
|
71 |
-
|
72 |
-
By activating this plugin, your cover image will be inserted into your RSS feeds, making it will easier for external sites to retrieve images from your feeds.
|
73 |
|
74 |
-
|
|
|
|
|
|
|
|
|
75 |
|
76 |
-
|
77 |
|
78 |
-
|
79 |
|
80 |
= Shortcode Parameters =
|
81 |
|
@@ -161,10 +167,10 @@ Yes it is.
|
|
161 |
|
162 |
You have to check first if your feed is valid. Please test it here: https://validator.w3.org/feed/
|
163 |
|
164 |
-
= Where do i find the plugin documentation =
|
165 |
[http://docs.themeisle.com/article/658-feedzy-rss-feeds](http://docs.themeisle.com/article/658-feedzy-rss-feeds)
|
166 |
|
167 |
-
= How to fix images that are not showing in the feed =
|
168 |
[http://docs.themeisle.com/article/666-how-to-fix-images-that-are-not-showing-in-the-feed](http://docs.themeisle.com/article/666-how-to-fix-images-that-are-not-showing-in-the-feed)
|
169 |
|
170 |
= How to change cache lifetime for a specific feed =
|
@@ -227,197 +233,206 @@ You have to check first if your feed is valid. Please test it here: https://vali
|
|
227 |
= How to use feedzy categories =
|
228 |
[http://docs.themeisle.com/article/640-how-to-use-feedzy-categories](http://docs.themeisle.com/article/640-how-to-use-feedzy-categories)
|
229 |
|
230 |
-
= How to add a read more link to Feedzy =
|
231 |
-
[http://docs.themeisle.com/article/544-how-to-add-a-read-more-link-to-feedzy](http://docs.themeisle.com/article/544-how-to-add-a-read-more-link-to-feedzy)
|
232 |
|
233 |
-
= How to move Feedzy templates to your theme =
|
234 |
-
[http://docs.themeisle.com/article/573-how-to-move-feedzy-templates-to-your-theme](http://docs.themeisle.com/article/573-how-to-move-feedzy-templates-to-your-theme)
|
235 |
|
236 |
-
= How to eliminate duplicate feed items. =
|
237 |
-
[http://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-items](http://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-items)
|
238 |
|
239 |
-
= How to check whether the RSS feed is valid or not in Feedzy =
|
240 |
-
[http://docs.themeisle.com/article/716-feedzy-how-to-check-whether-the-rss-feed-is-valid-or-not](http://docs.themeisle.com/article/716-feedzy-how-to-check-whether-the-rss-feed-is-valid-or-not)
|
241 |
|
242 |
-
= How to change user agent in Feedzy =
|
243 |
-
[http://docs.themeisle.com/article/713-how-to-change-user-agent-in-feedzy](http://docs.themeisle.com/article/713-how-to-change-user-agent-in-feedzy)
|
244 |
|
245 |
-
= How to use proxy settings in Feedzy =
|
246 |
-
[http://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feezy](http://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feezy)
|
247 |
|
248 |
-
= How to import posts from feeds in Feedzy =
|
249 |
-
[http://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy](http://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy)
|
250 |
|
251 |
-
= Where can I find the import posts options in Feedzy =
|
252 |
-
[http://docs.themeisle.com/article/743-where-can-i-find-the-import-posts-options-in-feedzy](http://docs.themeisle.com/article/743-where-can-i-find-the-import-posts-options-in-feedzy)
|
253 |
|
254 |
-
= How to use WordAI to Rephrase RSS content in Feedzy =
|
255 |
-
[http://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy](http://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy)
|
256 |
|
257 |
-
= Install and use the premium version of Feedzy RSS Feeds =
|
258 |
-
[http://docs.themeisle.com/article/783-install-and-use-the-premium-version-of-feedzy-rss-feeds](http://docs.themeisle.com/article/783-install-and-use-the-premium-version-of-feedzy-rss-feeds)
|
259 |
|
260 |
-
= Feedzy RSS Feeds Documentation =
|
261 |
-
[https://docs.themeisle.com/article/658-feedzy-rss-feeds-documentation](https://docs.themeisle.com/article/658-feedzy-rss-feeds-documentation)
|
262 |
|
263 |
-
= What actions and filters are available in Feedzy =
|
264 |
-
[https://docs.themeisle.com/article/540-what-actions-and-filters-are-available-in-feedzy](https://docs.themeisle.com/article/540-what-actions-and-filters-are-available-in-feedzy)
|
265 |
|
266 |
-
= How to change thumbs size and aspect ratio Feedzy =
|
267 |
-
[https://docs.themeisle.com/article/551-how-to-change-thumbs-size-and-aspect-ratio-feedzy](https://docs.themeisle.com/article/551-how-to-change-thumbs-size-and-aspect-ratio-feedzy)
|
268 |
|
269 |
-
= How to display RSS feed time and date in local time =
|
270 |
-
[https://docs.themeisle.com/article/567-how-to-display-rss-feed-time-and-date-in-local-time](https://docs.themeisle.com/article/567-how-to-display-rss-feed-time-and-date-in-local-time)
|
271 |
|
272 |
-
= How to add a read more link to Feedzy =
|
273 |
-
[https://docs.themeisle.com/article/544-how-to-add-a-read-more-link-to-feedzy](https://docs.themeisle.com/article/544-how-to-add-a-read-more-link-to-feedzy)
|
274 |
|
275 |
-
= How to use feedzy categories =
|
276 |
-
[https://docs.themeisle.com/article/640-how-to-use-feedzy-categories](https://docs.themeisle.com/article/640-how-to-use-feedzy-categories)
|
277 |
|
278 |
-
= How to use your own inline css =
|
279 |
-
[https://docs.themeisle.com/article/546-how-to-use-your-own-inline-css](https://docs.themeisle.com/article/546-how-to-use-your-own-inline-css)
|
280 |
|
281 |
-
= How to change cache lifetime for a specific feed =
|
282 |
-
[https://docs.themeisle.com/article/547-how-to-change-cache-lifetime-for-a-specific-feed](https://docs.themeisle.com/article/547-how-to-change-cache-lifetime-for-a-specific-feed)
|
283 |
|
284 |
-
= How to remove featured image from blog feed =
|
285 |
-
[https://docs.themeisle.com/article/554-how-to-remove-featured-image-from-blog-feed](https://docs.themeisle.com/article/554-how-to-remove-featured-image-from-blog-feed)
|
286 |
|
287 |
-
= How to handle publication date and author content =
|
288 |
-
[https://docs.themeisle.com/article/549-how-to-handle-publication-date-and-author-content](https://docs.themeisle.com/article/549-how-to-handle-publication-date-and-author-content)
|
289 |
|
290 |
-
= How to keep html in feed items content =
|
291 |
-
[https://docs.themeisle.com/article/542-how-to-keep-html-in-feed-items-content](https://docs.themeisle.com/article/542-how-to-keep-html-in-feed-items-content)
|
292 |
|
293 |
-
= How to fix images that are not showing in the feed =
|
294 |
-
[https://docs.themeisle.com/article/666-how-to-fix-images-that-are-not-showing-in-the-feed](https://docs.themeisle.com/article/666-how-to-fix-images-that-are-not-showing-in-the-feed)
|
295 |
|
296 |
-
= How to display items in a random order =
|
297 |
-
[https://docs.themeisle.com/article/550-how-to-display-items-in-a-random-order](https://docs.themeisle.com/article/550-how-to-display-items-in-a-random-order)
|
298 |
|
299 |
-
= How to remove links =
|
300 |
-
[https://docs.themeisle.com/article/541-how-to-remove-links](https://docs.themeisle.com/article/541-how-to-remove-links)
|
301 |
|
302 |
-
= How to move Feedzy templates to your theme =
|
303 |
-
[https://docs.themeisle.com/article/573-how-to-move-feedzy-templates-to-your-theme](https://docs.themeisle.com/article/573-how-to-move-feedzy-templates-to-your-theme)
|
304 |
|
305 |
-
= How to remove plugin css =
|
306 |
-
[https://docs.themeisle.com/article/545-how-to-remove-plugin-css](https://docs.themeisle.com/article/545-how-to-remove-plugin-css)
|
307 |
|
308 |
-
= How to remove time from publication date =
|
309 |
-
[https://docs.themeisle.com/article/553-how-to-remove-time-from-publication-date](https://docs.themeisle.com/article/553-how-to-remove-time-from-publication-date)
|
310 |
|
311 |
-
= How to remove the end hellip =
|
312 |
-
[https://docs.themeisle.com/article/543-how-to-remove-the-end-hellip](https://docs.themeisle.com/article/543-how-to-remove-the-end-hellip)
|
313 |
|
314 |
-
= How to decode item title =
|
315 |
-
[https://docs.themeisle.com/article/548-how-to-decode-item-title](https://docs.themeisle.com/article/548-how-to-decode-item-title)
|
316 |
|
317 |
-
= How to sort feed items by title =
|
318 |
-
[https://docs.themeisle.com/article/633-how-to-sort-feed-items-by-title](https://docs.themeisle.com/article/633-how-to-sort-feed-items-by-title)
|
319 |
|
320 |
-
= How to import posts from feeds in Feedzy =
|
321 |
-
[https://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy](https://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy)
|
322 |
|
323 |
-
= How to change author url =
|
324 |
-
[https://docs.themeisle.com/article/636-how-to-change-author-url](https://docs.themeisle.com/article/636-how-to-change-author-url)
|
325 |
|
326 |
-
= How to eliminate duplicate feed items. =
|
327 |
-
[https://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-items](https://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-items)
|
328 |
|
329 |
-
= How to check whether the RSS feed is valid or not in Feedzy =
|
330 |
-
[https://docs.themeisle.com/article/716-how-to-check-whether-the-rss-feed-is-valid-or-not-in-feedzy](https://docs.themeisle.com/article/716-how-to-check-whether-the-rss-feed-is-valid-or-not-in-feedzy)
|
331 |
|
332 |
-
= How to change the blacklist image name =
|
333 |
-
[https://docs.themeisle.com/article/552-how-to-change-the-blacklist-image-name](https://docs.themeisle.com/article/552-how-to-change-the-blacklist-image-name)
|
334 |
|
335 |
-
= How to use proxy settings in Feedzy =
|
336 |
-
[https://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feedzy](https://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feedzy)
|
337 |
|
338 |
-
= Where can I find the import posts options in Feedzy =
|
339 |
-
[https://docs.themeisle.com/article/743-where-can-i-find-the-import-posts-options-in-feedzy](https://docs.themeisle.com/article/743-where-can-i-find-the-import-posts-options-in-feedzy)
|
340 |
|
341 |
-
= How to change user agent in Feedzy =
|
342 |
-
[https://docs.themeisle.com/article/713-how-to-change-user-agent-in-feedzy](https://docs.themeisle.com/article/713-how-to-change-user-agent-in-feedzy)
|
343 |
|
344 |
-
= How to use WordAI to Rephrase RSS content in Feedzy =
|
345 |
-
[https://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy](https://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy)
|
346 |
|
347 |
-
= Install and use the premium version of Feedzy RSS Feeds =
|
348 |
-
[https://docs.themeisle.com/article/783-install-and-use-the-premium-version-of-feedzy-rss-feeds](https://docs.themeisle.com/article/783-install-and-use-the-premium-version-of-feedzy-rss-feeds)
|
349 |
|
350 |
-
= How to sort feed items by date =
|
351 |
-
[https://docs.themeisle.com/article/817-how-to-sort-feed-items-by-date](https://docs.themeisle.com/article/817-how-to-sort-feed-items-by-date)
|
352 |
|
353 |
-
= How to add rel="nofollow" to feed links =
|
354 |
-
[https://docs.themeisle.com/article/839-how-to-add-relnofollow-to-feed-links](https://docs.themeisle.com/article/839-how-to-add-relnofollow-to-feed-links)
|
355 |
|
356 |
-
= What to do when you get Warning: ./cache is not writeable =
|
357 |
-
[https://docs.themeisle.com/article/840-what-to-do-when-you-get-warning-cache-is-not-writeable](https://docs.themeisle.com/article/840-what-to-do-when-you-get-warning-cache-is-not-writeable)
|
358 |
|
359 |
-
= How to exclude feeds with certain words in it =
|
360 |
-
[https://docs.themeisle.com/article/850-how-to-exclude-feeds-with-certain-words-in-it](https://docs.themeisle.com/article/850-how-to-exclude-feeds-with-certain-words-in-it)
|
361 |
|
362 |
-
= How to add canonical tags for imported posts =
|
363 |
-
[https://docs.themeisle.com/article/841-how-to-add-canonical-tags-for-imported-posts](https://docs.themeisle.com/article/841-how-to-add-canonical-tags-for-imported-posts)
|
364 |
|
365 |
-
= How to display thumbnail image from the feeds =
|
366 |
-
[https://docs.themeisle.com/article/871-how-to-display-thumbnail-image-from-the-feeds](https://docs.themeisle.com/article/871-how-to-display-thumbnail-image-from-the-feeds)
|
367 |
|
368 |
-
= How to change feed items order =
|
369 |
-
[https://docs.themeisle.com/article/864-how-to-change-feed-items-order](https://docs.themeisle.com/article/864-how-to-change-feed-items-order)
|
370 |
|
371 |
-
= How to use WordAI or SpinnerChief to Rephrase RSS content in Feedzy =
|
372 |
-
[https://docs.themeisle.com/article/746-how-to-use-wordai-or-spinnerchief-to-rephrase-rss-content-in-feedzy](https://docs.themeisle.com/article/746-how-to-use-wordai-or-spinnerchief-to-rephrase-rss-content-in-feedzy)
|
373 |
|
374 |
-
= How to add affiliate referrals to feed URLs in Feedzy =
|
375 |
-
[https://docs.themeisle.com/article/715-how-to-add-affiliate-referrals-to-feed-urls-in-feedzy](https://docs.themeisle.com/article/715-how-to-add-affiliate-referrals-to-feed-urls-in-feedzy)
|
376 |
|
377 |
-
= How price is displayed from the feed =
|
378 |
-
[https://docs.themeisle.com/article/923-how-price-is-displayed-from-the-feed](https://docs.themeisle.com/article/923-how-price-is-displayed-from-the-feed)
|
379 |
|
380 |
-
= How to find Feed URL for Feedzy RSS Feeds =
|
381 |
-
[https://docs.themeisle.com/article/799-how-to-find-feed-url-for-feedzy-rss-feeds](https://docs.themeisle.com/article/799-how-to-find-feed-url-for-feedzy-rss-feeds)
|
382 |
|
383 |
-
= In Feedzy how do I... =
|
384 |
-
[https://docs.themeisle.com/article/942-in-feedzy-how-do-i](https://docs.themeisle.com/article/942-in-feedzy-how-do-i)
|
385 |
|
386 |
-
= How to import iTunes audio feed =
|
387 |
-
[https://docs.themeisle.com/article/1041-how-to-import-itunes-audio-feed](https://docs.themeisle.com/article/1041-how-to-import-itunes-audio-feed)
|
388 |
|
389 |
-
= Feedzy RSS Feeds Documentation =
|
390 |
-
[https://docs.themeisle.com/article/658-feedzy-rss-feeds](https://docs.themeisle.com/article/658-feedzy-rss-feeds)
|
|
|
|
|
|
|
391 |
|
392 |
-
= How to
|
393 |
-
[https://docs.themeisle.com/article/
|
394 |
|
395 |
-
= How to
|
396 |
-
[https://docs.themeisle.com/article/
|
397 |
|
398 |
-
= How to
|
399 |
-
[https://docs.themeisle.com/article/
|
400 |
|
401 |
-
= How to
|
402 |
-
[https://docs.themeisle.com/article/
|
403 |
|
404 |
-
= How to add
|
405 |
-
[https://docs.themeisle.com/article/
|
406 |
|
407 |
-
= How to
|
408 |
-
[https://docs.themeisle.com/article/
|
409 |
|
410 |
-
= How to
|
411 |
-
[https://docs.themeisle.com/article/
|
412 |
|
413 |
-
= How to
|
414 |
-
[https://docs.themeisle.com/article/
|
415 |
|
416 |
-
= How to
|
417 |
-
[https://docs.themeisle.com/article/
|
418 |
|
419 |
-
=
|
420 |
-
[https://docs.themeisle.com/article/
|
|
|
|
|
|
|
|
|
|
|
|
|
421 |
|
422 |
= How to use Feedzy with a shortcode =
|
423 |
[https://docs.themeisle.com/article/1130-how-to-use-feedzy-with-a-shortcode](https://docs.themeisle.com/article/1130-how-to-use-feedzy-with-a-shortcode)
|
@@ -430,7 +445,10 @@ You have to check first if your feed is valid. Please test it here: https://vali
|
|
430 |
4. Widget render
|
431 |
|
432 |
|
433 |
-
|
|
|
|
|
|
|
434 |
= 3.3.11 - 2019-09-24 =
|
435 |
|
436 |
* Fix issue with replacing ellipsis
|
@@ -438,17 +456,17 @@ You have to check first if your feed is valid. Please test it here: https://vali
|
|
438 |
* Fix issues with some summaries getting truncated
|
439 |
|
440 |
|
441 |
-
= 3.3.10 - 2019-08-20 =
|
442 |
|
443 |
* Fix issue with undefined index: proxy
|
444 |
|
445 |
|
446 |
-
= 3.3.9 - 2019-08-13 =
|
447 |
|
448 |
* Fix PHP notice that shows up if meta=no
|
449 |
|
450 |
|
451 |
-
= 3.3.8 - 2019-08-12 =
|
452 |
|
453 |
* - Fix issue with AMP pages not showing image
|
454 |
* - In the short code, separate behavior of meta into author, date and time
|
@@ -458,7 +476,7 @@ You have to check first if your feed is valid. Please test it here: https://vali
|
|
458 |
* - Add ability to show date/time in local timezone
|
459 |
|
460 |
|
461 |
-
= 3.3.7 - 2019-06-15 =
|
462 |
|
463 |
* Fix: Not working in the block editor
|
464 |
* Feat: Referral URL can now include the URL of the item as a parameter
|
@@ -467,7 +485,7 @@ You have to check first if your feed is valid. Please test it here: https://vali
|
|
467 |
* Fix: Widget options not visible in theme customizer
|
468 |
|
469 |
|
470 |
-
= 3.3.6 - 2019-05-03 =
|
471 |
|
472 |
* Add filter to disable DB caching
|
473 |
* Fix issue with HTML tags not closed when feed has no items
|
@@ -475,25 +493,25 @@ You have to check first if your feed is valid. Please test it here: https://vali
|
|
475 |
* Tested up to WP 5.2
|
476 |
|
477 |
|
478 |
-
= 3.3.5 - 2019-02-24 =
|
479 |
|
480 |
* Tested with WP 5.1
|
481 |
* Fix issue with single feeds that have errors
|
482 |
|
483 |
|
484 |
-
= 3.3.4 - 2019-02-08 =
|
485 |
|
486 |
* Multifeed shows an error and no content if even one feed has an error
|
487 |
|
488 |
|
489 |
-
= 3.3.3 - 2019-01-31 =
|
490 |
|
491 |
* Customize error message when no items in the feed
|
492 |
* Outgoing links should have rel=noopener
|
493 |
* Fixed fatal error in Feedzy_Rss_Feeds_Admin_Abstract::feedzy_retrieve_image
|
494 |
|
495 |
|
496 |
-
= 3.3.2 - 2018-12-22 =
|
497 |
|
498 |
* Option to handle HTTP images in the shortcode
|
499 |
* Option to specify nofollow for links in the shortcode
|
@@ -502,20 +520,20 @@ You have to check first if your feed is valid. Please test it here: https://vali
|
|
502 |
* Add support for extracting price from custom feed tags
|
503 |
|
504 |
|
505 |
-
= 3.3.1 - 2018-11-05 =
|
506 |
|
507 |
* Import Posts enabled for plan 1 users
|
508 |
* Fixed issue with some idiosyncratic feeds
|
509 |
|
510 |
|
511 |
-
= 3.3.0 - 2018-08-21 =
|
512 |
|
513 |
* Improve readme plugin description.
|
514 |
* Improves compatibility with Gutenberg plugin.
|
515 |
* Improves image detection from feeds.
|
516 |
|
517 |
|
518 |
-
= 3.2.12 - 2018-08-16 =
|
519 |
|
520 |
* Fixed compatibility with the Gutenberg block
|
521 |
* Added option to disable the featured image from being added to the website RSS feed
|
@@ -523,7 +541,7 @@ You have to check first if your feed is valid. Please test it here: https://vali
|
|
523 |
* Updated the readme file
|
524 |
|
525 |
|
526 |
-
= 3.2.11 - 2018-06-26 =
|
527 |
|
528 |
* New Gutenberg block for Feedzy RSS Feeds
|
529 |
* Fixed curl SSL problem with Feeds with HTTPS
|
@@ -531,33 +549,33 @@ You have to check first if your feed is valid. Please test it here: https://vali
|
|
531 |
* Added compatibility with the pro version for full text import
|
532 |
|
533 |
|
534 |
-
= 3.2.10 - 2018-04-02 =
|
535 |
|
536 |
* Adds shortcode attribute for feed items order ( title ASC/DESC, date ASC/DESC).
|
537 |
-
* Improve documentation and examples.
|
538 |
|
539 |
|
540 |
-
= 3.2.9 - 2018-03-07 =
|
541 |
|
542 |
-
* Automatically fix deprecated google news feeds.
|
543 |
* Improve compatibility with the pro version.
|
544 |
|
545 |
|
546 |
-
= 3.2.8 - 2018-02-20 =
|
547 |
|
548 |
* Fix issue with medium feeds.
|
549 |
-
* Improves extensibility using various hooks.
|
550 |
* Fix feeds without schema protocol.
|
551 |
|
552 |
|
553 |
-
= 3.2.7 - 2018-01-05 =
|
554 |
|
555 |
* Fix compatibility with SiteOrigin Page Builder.
|
556 |
* Adds full content import from feed.
|
557 |
* Fix issue with img scraped from articles.
|
558 |
|
559 |
|
560 |
-
= 3.2.6 - 2017-11-16 =
|
561 |
|
562 |
* Adds compatibility with WordPress 4.9
|
563 |
|
@@ -575,39 +593,39 @@ You have to check first if your feed is valid. Please test it here: https://vali
|
|
575 |
* Removes duplicates readme.md files.
|
576 |
|
577 |
|
578 |
-
= 3.2.1 - 2017-10-12 =
|
579 |
|
580 |
-
* Adds global settings page.
|
581 |
-
* Adds User Agent and Proxy settings.
|
582 |
* Fix for some edge cases regarding images in the feed.
|
583 |
|
584 |
|
585 |
-
= 3.2.0 - 2017-08-17 =
|
586 |
|
587 |
-
* Fix for image URL issue following some strange patterns.
|
588 |
* Added fallback for broken feed, now if one feed from the list is not working, others will will be used.
|
589 |
* Added shortcode parameter for feed cache control.
|
590 |
|
591 |
|
592 |
-
= 3.1.10 - 2017-08-03 =
|
593 |
|
594 |
* Fixed typos in shortcode builder.
|
595 |
* Fixed image encoding issue.
|
596 |
|
597 |
|
598 |
-
= 3.1.9 - 2017-07-21 =
|
599 |
|
600 |
* Fixed issue with fetching images containg GET parameters.
|
601 |
|
602 |
|
603 |
-
= 3.1.8 - 2017-07-17 =
|
604 |
|
605 |
* Fixed image fetching issues.
|
606 |
* Fixed link opening behaviour
|
607 |
* Improved description ( Thanks to @chesio )
|
608 |
|
609 |
|
610 |
-
= 3.1.7 =
|
611 |
|
612 |
* Added new sdk logic.
|
613 |
* Improved compatibility with the pro version.
|
@@ -854,4 +872,4 @@ You have to check first if your feed is valid. Please test it here: https://vali
|
|
854 |
* IMPORTANT: You have to reactivate the plugin after its update!
|
855 |
|
856 |
= 1.0 =
|
857 |
-
* First release.
|
1 |
+
=== RSS Aggregator by Feedzy - Powerful WP Autoblogging and News Aggregator ===
|
2 |
Contributors: themeisle,codeinwp,hardeepasrani,contactashish13
|
3 |
+
Tags: rss aggregator, news aggregator, autoblogging, feed to post, rss import
|
4 |
Requires at least: 3.7
|
5 |
Requires PHP: 5.3
|
6 |
+
Tested up to: 5.3
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
+
The most powerful WordPress RSS aggregator, helping you curate content, autoblog, import and display unlimited RSS feeds within a few minutes.
|
|
|
12 |
|
13 |
## Description ##
|
14 |
|
15 |
+
## FEEDZY - The Powerful RSS Aggregator and Content Aggregator Plugin for Autoblogging ##
|
|
|
|
|
16 |
|
17 |
+
FEEDZY RSS Aggregator helps you aggregate unlimited RSS feeds and automatically publish them on your site within a few minutes.
|
18 |
+
With FEEDZY RSS Aggregator, you can sit back, let your site autoblog and always stay fresh with new content, which in return helps improve content marketing, boost your SEO, increase audience’s engagement, and probably earn more money.
|
19 |
|
20 |
+
## What you can do with Feedzy RSS Aggregator: ##
|
21 |
|
22 |
+
* **Automatically import** and aggregate unlimited RSS feeds from unlimited sources
|
23 |
+
* **Bulk import and organize** multiple feed sources of similar topics into Categories. See how our user, Barry Seward, loves this feature [here](https://wordpress.org/support/topic/works-great-6051/)
|
24 |
+
* **Easily display RSS feeds** using shortcodes, Gutenberg blocks, or widgets in your third-party page builders like Elementor
|
25 |
+
* **Import images** with your RSS feeds or use your own image/logo for feeds without image. We know visuals are important and do not want your site to have a boring list of text and links.
|
26 |
+
* **Control number of items** you want to display for a feed source. Just want to display 1 article or 20 articles in a block? You’ve got it with one click.
|
27 |
+
* Worried if the imported feed articles’ titles are too long and might not look nice on your site? Change them with the **Title Character Limit** function.
|
28 |
+
* Choose your own **caching** time and how often you want to pull RSS feeds to ensure the **best performance** for your site.
|
29 |
+
* Create a **sidebar** of your imported feed items.
|
30 |
+
* **Control which meta** fields you want to display, such as author, date and time of the RSS feed.
|
31 |
+
* **Responsive** content across platforms.
|
32 |
|
33 |
+
## You should use FEEDZY RSS Aggregator if: ##
|
34 |
|
35 |
+
* You own a news site; you want a WP news aggregator to make sure your site always updated with the latest news
|
36 |
+
* You own a blog; you need a WP content aggregator to autoblog and keep your audience engaged with fresh content
|
37 |
+
* You want to improve your SEO rankings. See how the SEO expert, MOZ, talked about 10 reasons “[How Fresh Content May Influence Google Rankings”](https://moz.com/blog/google-fresh-factor-new)“
|
38 |
+
* You develop a site for your client and just want to quickly demo a news feed of frequently updated content
|
39 |
+
* You build a company website and want a news/blog page to enhance company’s reputation and SEO. Focus on your business and leave the content marketing work to FEEDZY RSS Aggregator.
|
40 |
+
* You run an affiliate business or want to earn extra from RSS affiliate marketing feeds
|
41 |
+
* You need a simple but comprehensive solution to curate anything in your niche, such as property listing for a real estate website, product listing for an affiliated e-commerce site, etc.
|
42 |
+
* It does not matter which industry or topic your site is about. +30,000 users have used FEEDZY RSS Aggregator to curate content from everywhere, such as finance, technology, food, home furniture, e-commerce products, religion, sports, and so on.
|
43 |
+
* You want to earn more money, thanks to the benefits above.
|
44 |
+
* Note: to learn more about how to use curated content to boost your SEO in a proper and effective way, read more [here](http://www.curata.com/blog/content-curation-seo-dos-and-donts/).
|
45 |
|
46 |
|
47 |
+
## More powerful with FEEDZY RSS Aggregator’s premium features ##
|
|
|
48 |
|
49 |
+
If you love FEEDZY RSS Aggregator, why not bring your site to the next level with more powerful tools to boost your SEO and keep your audience on your site for longer.
|
50 |
|
51 |
+
* **[Feed to post](https://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy)** (our most loved feature): automatically convert RSS feed items to Wordpress pages, posts, and custom post type.
|
52 |
+
* **[Keyword filter](https://docs.themeisle.com/article/942-in-feedzy-how-do-i#specific-keywords)**: you can choose to import feed to post and display content if they include or exclude certain keywords.
|
53 |
+
* **Map the imported feed elements to your post elements**: totally control and customize how your feed to post, such as using the feed’s image or your image as the featured image, importing only the feed’s content or both the content and image into the post content, creating post drafts first to review or publishing right away, and so many more.
|
54 |
+
* **[Full text RSS feeds import (with image)](https://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy)** (with image): by extracting the entire HTML from each feed item, you can import full text content to post, not just the feed excerpt.
|
55 |
+
* **[Multiple feed templates](https://demo.themeisle.com/feedzy-rss-feeds/)**: choose the best template for each feed, such as standard grid layout, blog layout, online shop layout, or audio playback (soundcloud) playout.
|
56 |
+
* **[WordAI and SpinnerChief integration](https://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy)** to avoid duplicated content.
|
57 |
+
* **[Parse and display pricings](https://docs.themeisle.com/article/923-how-price-is-displayed-from-the-feed)** for online shop and product feeds.
|
58 |
+
* **[Add affiliate links and referral parameters](https://docs.themeisle.com/article/715-feedzy-how-to-add-affiliate-referrals-to-feed-urls)** for your affiliate business.
|
59 |
+
* Still skeptical? Ask your pre-sales questions here and we will get back shortly, or purchase with peace of mind and try it out yourself. We offer **30-day-no-questions-asked money back guarantee.**
|
60 |
|
61 |
+
## We’re here for you, and we take all feedback seriously ##
|
62 |
|
63 |
+
* [Knowledge Base](https://docs.themeisle.com/category/712-feedzy): we’ve created a complete documentation library and we’re still constantly updating with new tutorials.
|
64 |
+
* [Youtube tutorials](https://www.youtube.com/channel/UCAQcBsP3h6p5yXgFap4LEGA/search?query=feedzy): don’t like reading? We’ve created some Youtube tutorials to help you get started with FEEDZY RSS Aggregator plugin step by step.
|
65 |
+
* [Support forum](https://wordpress.org/support/plugin/feedzy-rss-feeds/): we offer support to free version user here and try to reply within one business day.
|
66 |
+
* [Premium support](https://themeisle.com/contact/): we offer priority support for Developer license customers and live chat support for Agency license customers.
|
67 |
+
* If you have any feedback or feature suggestions for FEEDZY RSS Aggregator, don’t hesitate to tell us. We read all feedback and ideas.
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
|
|
|
69 |
|
70 |
+
## You’re in good hands ##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
|
72 |
+
FEEDZY RSS Aggregator is one of many great products by [ThemeIsle](https://themeisle.com/). Join over 30,000 FEEDZY RSS Aggregator users and half of a million ThemeIsle users from all over the world.
|
73 |
|
74 |
+
See what real users talk about us:
|
|
|
|
|
75 |
|
76 |
+
* FEEDZY RSS Aggregator in [WordPress Daily with Tom Mullins](https://www.youtube.com/watch?v=J7q_g0N7Efc)
|
77 |
+
* [Lester Diaz showed how to make $200 per day](https://www.youtube.com/watch?v=WC2Tc830yMs) using FEEDZY RSS Aggregator
|
78 |
+
* [“Simple and beautiful”](https://wordpress.org/support/topic/simple-and-beautiful-58/) and 5 stars from a power user using FEEDZY RSS Aggregator for blogspot
|
79 |
+
* [“Excellent plugin”](https://wordpress.org/support/topic/excellent-plugin-4867/) and 5 stars from a power user using FEEDZY RSS Aggregator for Mailchimp mailing list
|
80 |
+
* [“Robust tool but also works great for simple needs”](https://wordpress.org/support/topic/robust-tool-but-also-works-great-for-simple-needs/) and 5 stars from a power user using FEEDZY RSS Aggregator to display recent posts with excerpts
|
81 |
|
82 |
+
## Technical note ##
|
83 |
|
84 |
+
FEEDZY RSS Aggregator supports any additional library and takes up minimal space in your cache/CSS to ensure high performance. This ensures compatibility with any hosting provider that supports WordPress, but if for any reason it doesn’t work for yours feel free to [create a new support topic](https://wordpress.org/support/plugin/feedzy-rss-feeds/#new-post).
|
85 |
|
86 |
= Shortcode Parameters =
|
87 |
|
167 |
|
168 |
You have to check first if your feed is valid. Please test it here: https://validator.w3.org/feed/
|
169 |
|
170 |
+
= Where do i find the plugin documentation =
|
171 |
[http://docs.themeisle.com/article/658-feedzy-rss-feeds](http://docs.themeisle.com/article/658-feedzy-rss-feeds)
|
172 |
|
173 |
+
= How to fix images that are not showing in the feed =
|
174 |
[http://docs.themeisle.com/article/666-how-to-fix-images-that-are-not-showing-in-the-feed](http://docs.themeisle.com/article/666-how-to-fix-images-that-are-not-showing-in-the-feed)
|
175 |
|
176 |
= How to change cache lifetime for a specific feed =
|
233 |
= How to use feedzy categories =
|
234 |
[http://docs.themeisle.com/article/640-how-to-use-feedzy-categories](http://docs.themeisle.com/article/640-how-to-use-feedzy-categories)
|
235 |
|
236 |
+
= How to add a read more link to Feedzy =
|
237 |
+
[http://docs.themeisle.com/article/544-how-to-add-a-read-more-link-to-feedzy](http://docs.themeisle.com/article/544-how-to-add-a-read-more-link-to-feedzy)
|
238 |
|
239 |
+
= How to move Feedzy templates to your theme =
|
240 |
+
[http://docs.themeisle.com/article/573-how-to-move-feedzy-templates-to-your-theme](http://docs.themeisle.com/article/573-how-to-move-feedzy-templates-to-your-theme)
|
241 |
|
242 |
+
= How to eliminate duplicate feed items. =
|
243 |
+
[http://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-items](http://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-items)
|
244 |
|
245 |
+
= How to check whether the RSS feed is valid or not in Feedzy =
|
246 |
+
[http://docs.themeisle.com/article/716-feedzy-how-to-check-whether-the-rss-feed-is-valid-or-not](http://docs.themeisle.com/article/716-feedzy-how-to-check-whether-the-rss-feed-is-valid-or-not)
|
247 |
|
248 |
+
= How to change user agent in Feedzy =
|
249 |
+
[http://docs.themeisle.com/article/713-how-to-change-user-agent-in-feedzy](http://docs.themeisle.com/article/713-how-to-change-user-agent-in-feedzy)
|
250 |
|
251 |
+
= How to use proxy settings in Feedzy =
|
252 |
+
[http://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feezy](http://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feezy)
|
253 |
|
254 |
+
= How to import posts from feeds in Feedzy =
|
255 |
+
[http://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy](http://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy)
|
256 |
|
257 |
+
= Where can I find the import posts options in Feedzy =
|
258 |
+
[http://docs.themeisle.com/article/743-where-can-i-find-the-import-posts-options-in-feedzy](http://docs.themeisle.com/article/743-where-can-i-find-the-import-posts-options-in-feedzy)
|
259 |
|
260 |
+
= How to use WordAI to Rephrase RSS content in Feedzy =
|
261 |
+
[http://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy](http://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy)
|
262 |
|
263 |
+
= Install and use the premium version of Feedzy RSS Feeds =
|
264 |
+
[http://docs.themeisle.com/article/783-install-and-use-the-premium-version-of-feedzy-rss-feeds](http://docs.themeisle.com/article/783-install-and-use-the-premium-version-of-feedzy-rss-feeds)
|
265 |
|
266 |
+
= Feedzy RSS Feeds Documentation =
|
267 |
+
[https://docs.themeisle.com/article/658-feedzy-rss-feeds-documentation](https://docs.themeisle.com/article/658-feedzy-rss-feeds-documentation)
|
268 |
|
269 |
+
= What actions and filters are available in Feedzy =
|
270 |
+
[https://docs.themeisle.com/article/540-what-actions-and-filters-are-available-in-feedzy](https://docs.themeisle.com/article/540-what-actions-and-filters-are-available-in-feedzy)
|
271 |
|
272 |
+
= How to change thumbs size and aspect ratio Feedzy =
|
273 |
+
[https://docs.themeisle.com/article/551-how-to-change-thumbs-size-and-aspect-ratio-feedzy](https://docs.themeisle.com/article/551-how-to-change-thumbs-size-and-aspect-ratio-feedzy)
|
274 |
|
275 |
+
= How to display RSS feed time and date in local time =
|
276 |
+
[https://docs.themeisle.com/article/567-how-to-display-rss-feed-time-and-date-in-local-time](https://docs.themeisle.com/article/567-how-to-display-rss-feed-time-and-date-in-local-time)
|
277 |
|
278 |
+
= How to add a read more link to Feedzy =
|
279 |
+
[https://docs.themeisle.com/article/544-how-to-add-a-read-more-link-to-feedzy](https://docs.themeisle.com/article/544-how-to-add-a-read-more-link-to-feedzy)
|
280 |
|
281 |
+
= How to use feedzy categories =
|
282 |
+
[https://docs.themeisle.com/article/640-how-to-use-feedzy-categories](https://docs.themeisle.com/article/640-how-to-use-feedzy-categories)
|
283 |
|
284 |
+
= How to use your own inline css =
|
285 |
+
[https://docs.themeisle.com/article/546-how-to-use-your-own-inline-css](https://docs.themeisle.com/article/546-how-to-use-your-own-inline-css)
|
286 |
|
287 |
+
= How to change cache lifetime for a specific feed =
|
288 |
+
[https://docs.themeisle.com/article/547-how-to-change-cache-lifetime-for-a-specific-feed](https://docs.themeisle.com/article/547-how-to-change-cache-lifetime-for-a-specific-feed)
|
289 |
|
290 |
+
= How to remove featured image from blog feed =
|
291 |
+
[https://docs.themeisle.com/article/554-how-to-remove-featured-image-from-blog-feed](https://docs.themeisle.com/article/554-how-to-remove-featured-image-from-blog-feed)
|
292 |
|
293 |
+
= How to handle publication date and author content =
|
294 |
+
[https://docs.themeisle.com/article/549-how-to-handle-publication-date-and-author-content](https://docs.themeisle.com/article/549-how-to-handle-publication-date-and-author-content)
|
295 |
|
296 |
+
= How to keep html in feed items content =
|
297 |
+
[https://docs.themeisle.com/article/542-how-to-keep-html-in-feed-items-content](https://docs.themeisle.com/article/542-how-to-keep-html-in-feed-items-content)
|
298 |
|
299 |
+
= How to fix images that are not showing in the feed =
|
300 |
+
[https://docs.themeisle.com/article/666-how-to-fix-images-that-are-not-showing-in-the-feed](https://docs.themeisle.com/article/666-how-to-fix-images-that-are-not-showing-in-the-feed)
|
301 |
|
302 |
+
= How to display items in a random order =
|
303 |
+
[https://docs.themeisle.com/article/550-how-to-display-items-in-a-random-order](https://docs.themeisle.com/article/550-how-to-display-items-in-a-random-order)
|
304 |
|
305 |
+
= How to remove links =
|
306 |
+
[https://docs.themeisle.com/article/541-how-to-remove-links](https://docs.themeisle.com/article/541-how-to-remove-links)
|
307 |
|
308 |
+
= How to move Feedzy templates to your theme =
|
309 |
+
[https://docs.themeisle.com/article/573-how-to-move-feedzy-templates-to-your-theme](https://docs.themeisle.com/article/573-how-to-move-feedzy-templates-to-your-theme)
|
310 |
|
311 |
+
= How to remove plugin css =
|
312 |
+
[https://docs.themeisle.com/article/545-how-to-remove-plugin-css](https://docs.themeisle.com/article/545-how-to-remove-plugin-css)
|
313 |
|
314 |
+
= How to remove time from publication date =
|
315 |
+
[https://docs.themeisle.com/article/553-how-to-remove-time-from-publication-date](https://docs.themeisle.com/article/553-how-to-remove-time-from-publication-date)
|
316 |
|
317 |
+
= How to remove the end hellip =
|
318 |
+
[https://docs.themeisle.com/article/543-how-to-remove-the-end-hellip](https://docs.themeisle.com/article/543-how-to-remove-the-end-hellip)
|
319 |
|
320 |
+
= How to decode item title =
|
321 |
+
[https://docs.themeisle.com/article/548-how-to-decode-item-title](https://docs.themeisle.com/article/548-how-to-decode-item-title)
|
322 |
|
323 |
+
= How to sort feed items by title =
|
324 |
+
[https://docs.themeisle.com/article/633-how-to-sort-feed-items-by-title](https://docs.themeisle.com/article/633-how-to-sort-feed-items-by-title)
|
325 |
|
326 |
+
= How to import posts from feeds in Feedzy =
|
327 |
+
[https://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy](https://docs.themeisle.com/article/742-how-to-import-posts-from-feeds-in-feedzy)
|
328 |
|
329 |
+
= How to change author url =
|
330 |
+
[https://docs.themeisle.com/article/636-how-to-change-author-url](https://docs.themeisle.com/article/636-how-to-change-author-url)
|
331 |
|
332 |
+
= How to eliminate duplicate feed items. =
|
333 |
+
[https://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-items](https://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-items)
|
334 |
|
335 |
+
= How to check whether the RSS feed is valid or not in Feedzy =
|
336 |
+
[https://docs.themeisle.com/article/716-how-to-check-whether-the-rss-feed-is-valid-or-not-in-feedzy](https://docs.themeisle.com/article/716-how-to-check-whether-the-rss-feed-is-valid-or-not-in-feedzy)
|
337 |
|
338 |
+
= How to change the blacklist image name =
|
339 |
+
[https://docs.themeisle.com/article/552-how-to-change-the-blacklist-image-name](https://docs.themeisle.com/article/552-how-to-change-the-blacklist-image-name)
|
340 |
|
341 |
+
= How to use proxy settings in Feedzy =
|
342 |
+
[https://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feedzy](https://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feedzy)
|
343 |
|
344 |
+
= Where can I find the import posts options in Feedzy =
|
345 |
+
[https://docs.themeisle.com/article/743-where-can-i-find-the-import-posts-options-in-feedzy](https://docs.themeisle.com/article/743-where-can-i-find-the-import-posts-options-in-feedzy)
|
346 |
|
347 |
+
= How to change user agent in Feedzy =
|
348 |
+
[https://docs.themeisle.com/article/713-how-to-change-user-agent-in-feedzy](https://docs.themeisle.com/article/713-how-to-change-user-agent-in-feedzy)
|
349 |
|
350 |
+
= How to use WordAI to Rephrase RSS content in Feedzy =
|
351 |
+
[https://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy](https://docs.themeisle.com/article/746-how-to-use-wordai-to-rephrase-rss-content-in-feedzy)
|
352 |
|
353 |
+
= Install and use the premium version of Feedzy RSS Feeds =
|
354 |
+
[https://docs.themeisle.com/article/783-install-and-use-the-premium-version-of-feedzy-rss-feeds](https://docs.themeisle.com/article/783-install-and-use-the-premium-version-of-feedzy-rss-feeds)
|
355 |
|
356 |
+
= How to sort feed items by date =
|
357 |
+
[https://docs.themeisle.com/article/817-how-to-sort-feed-items-by-date](https://docs.themeisle.com/article/817-how-to-sort-feed-items-by-date)
|
358 |
|
359 |
+
= How to add rel="nofollow" to feed links =
|
360 |
+
[https://docs.themeisle.com/article/839-how-to-add-relnofollow-to-feed-links](https://docs.themeisle.com/article/839-how-to-add-relnofollow-to-feed-links)
|
361 |
|
362 |
+
= What to do when you get Warning: ./cache is not writeable =
|
363 |
+
[https://docs.themeisle.com/article/840-what-to-do-when-you-get-warning-cache-is-not-writeable](https://docs.themeisle.com/article/840-what-to-do-when-you-get-warning-cache-is-not-writeable)
|
364 |
|
365 |
+
= How to exclude feeds with certain words in it =
|
366 |
+
[https://docs.themeisle.com/article/850-how-to-exclude-feeds-with-certain-words-in-it](https://docs.themeisle.com/article/850-how-to-exclude-feeds-with-certain-words-in-it)
|
367 |
|
368 |
+
= How to add canonical tags for imported posts =
|
369 |
+
[https://docs.themeisle.com/article/841-how-to-add-canonical-tags-for-imported-posts](https://docs.themeisle.com/article/841-how-to-add-canonical-tags-for-imported-posts)
|
370 |
|
371 |
+
= How to display thumbnail image from the feeds =
|
372 |
+
[https://docs.themeisle.com/article/871-how-to-display-thumbnail-image-from-the-feeds](https://docs.themeisle.com/article/871-how-to-display-thumbnail-image-from-the-feeds)
|
373 |
|
374 |
+
= How to change feed items order =
|
375 |
+
[https://docs.themeisle.com/article/864-how-to-change-feed-items-order](https://docs.themeisle.com/article/864-how-to-change-feed-items-order)
|
376 |
|
377 |
+
= How to use WordAI or SpinnerChief to Rephrase RSS content in Feedzy =
|
378 |
+
[https://docs.themeisle.com/article/746-how-to-use-wordai-or-spinnerchief-to-rephrase-rss-content-in-feedzy](https://docs.themeisle.com/article/746-how-to-use-wordai-or-spinnerchief-to-rephrase-rss-content-in-feedzy)
|
379 |
|
380 |
+
= How to add affiliate referrals to feed URLs in Feedzy =
|
381 |
+
[https://docs.themeisle.com/article/715-how-to-add-affiliate-referrals-to-feed-urls-in-feedzy](https://docs.themeisle.com/article/715-how-to-add-affiliate-referrals-to-feed-urls-in-feedzy)
|
382 |
|
383 |
+
= How price is displayed from the feed =
|
384 |
+
[https://docs.themeisle.com/article/923-how-price-is-displayed-from-the-feed](https://docs.themeisle.com/article/923-how-price-is-displayed-from-the-feed)
|
385 |
|
386 |
+
= How to find Feed URL for Feedzy RSS Feeds =
|
387 |
+
[https://docs.themeisle.com/article/799-how-to-find-feed-url-for-feedzy-rss-feeds](https://docs.themeisle.com/article/799-how-to-find-feed-url-for-feedzy-rss-feeds)
|
388 |
|
389 |
+
= In Feedzy how do I... =
|
390 |
+
[https://docs.themeisle.com/article/942-in-feedzy-how-do-i](https://docs.themeisle.com/article/942-in-feedzy-how-do-i)
|
391 |
|
392 |
+
= How to import iTunes audio feed =
|
393 |
+
[https://docs.themeisle.com/article/1041-how-to-import-itunes-audio-feed](https://docs.themeisle.com/article/1041-how-to-import-itunes-audio-feed)
|
394 |
|
395 |
+
= Feedzy RSS Feeds Documentation =
|
396 |
+
[https://docs.themeisle.com/article/658-feedzy-rss-feeds](https://docs.themeisle.com/article/658-feedzy-rss-feeds)
|
397 |
+
|
398 |
+
= How to check whether the RSS feed is valid or not in Feedzy =
|
399 |
+
[https://docs.themeisle.com/article/716-feedzy-how-to-check-whether-the-rss-feed-is-valid-or-not](https://docs.themeisle.com/article/716-feedzy-how-to-check-whether-the-rss-feed-is-valid-or-not)
|
400 |
|
401 |
+
= How to change thumbs size and aspect ratio Feedzy =
|
402 |
+
[https://docs.themeisle.com/article/551-how-to-change-thumbs-size-and-aspect-ratio](https://docs.themeisle.com/article/551-how-to-change-thumbs-size-and-aspect-ratio)
|
403 |
|
404 |
+
= How to use proxy settings in Feedzy =
|
405 |
+
[https://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feezy](https://docs.themeisle.com/article/714-how-to-use-proxy-settings-in-feezy)
|
406 |
|
407 |
+
= How to decode item title =
|
408 |
+
[https://docs.themeisle.com/article/548-how-to-decode-item-title-with](https://docs.themeisle.com/article/548-how-to-decode-item-title-with)
|
409 |
|
410 |
+
= How to add affiliate referrals to feed URLs in Feedzy =
|
411 |
+
[https://docs.themeisle.com/article/715-feedzy-how-to-add-affiliate-referrals-to-feed-urls](https://docs.themeisle.com/article/715-feedzy-how-to-add-affiliate-referrals-to-feed-urls)
|
412 |
|
413 |
+
= How to add rel="nofollow" to feed links =
|
414 |
+
[https://docs.themeisle.com/article/839-how-to-add-rel-nofollow-to-feed-links](https://docs.themeisle.com/article/839-how-to-add-rel-nofollow-to-feed-links)
|
415 |
|
416 |
+
= How to import iTunes audio feed =
|
417 |
+
[https://docs.themeisle.com/article/1041-import-itunes-audio-feed](https://docs.themeisle.com/article/1041-import-itunes-audio-feed)
|
418 |
|
419 |
+
= How to link featured image to original post in Slider Revolution =
|
420 |
+
[https://docs.themeisle.com/article/1069-how-to-link-featured-image-to-original-post-in-slider-revolution](https://docs.themeisle.com/article/1069-how-to-link-featured-image-to-original-post-in-slider-revolution)
|
421 |
|
422 |
+
= How to display author, date, time (or a combination) from the feed =
|
423 |
+
[https://docs.themeisle.com/article/1089-how-to-display-author-date-or-time-from-the-feed](https://docs.themeisle.com/article/1089-how-to-display-author-date-or-time-from-the-feed)
|
424 |
|
425 |
+
= How to get videos from YouTube with Feedzy =
|
426 |
+
[https://docs.themeisle.com/article/1113-how-to-get-videos-from-youtube-with-feedzy](https://docs.themeisle.com/article/1113-how-to-get-videos-from-youtube-with-feedzy)
|
427 |
|
428 |
+
= Feedzy RSS Feeds Documentation =
|
429 |
+
[https://docs.themeisle.com/article/1119-feedzy-rss-feeds-documentation](https://docs.themeisle.com/article/1119-feedzy-rss-feeds-documentation)
|
430 |
+
|
431 |
+
= How to use Feed to Post feature in Feedzy =
|
432 |
+
[https://docs.themeisle.com/article/1154-how-to-use-feed-to-post-feature-in-feedzy](https://docs.themeisle.com/article/1154-how-to-use-feed-to-post-feature-in-feedzy)
|
433 |
+
|
434 |
+
= Feedzy Troubleshooting Guide =
|
435 |
+
[https://docs.themeisle.com/article/1155-feedzy-troubleshooting-guide](https://docs.themeisle.com/article/1155-feedzy-troubleshooting-guide)
|
436 |
|
437 |
= How to use Feedzy with a shortcode =
|
438 |
[https://docs.themeisle.com/article/1130-how-to-use-feedzy-with-a-shortcode](https://docs.themeisle.com/article/1130-how-to-use-feedzy-with-a-shortcode)
|
445 |
4. Widget render
|
446 |
|
447 |
|
448 |
+
= 3.3.12 - 2019-11-11 =
|
449 |
+
|
450 |
+
* Tested up to 5.3
|
451 |
+
|
452 |
= 3.3.11 - 2019-09-24 =
|
453 |
|
454 |
* Fix issue with replacing ellipsis
|
456 |
* Fix issues with some summaries getting truncated
|
457 |
|
458 |
|
459 |
+
= 3.3.10 - 2019-08-20 =
|
460 |
|
461 |
* Fix issue with undefined index: proxy
|
462 |
|
463 |
|
464 |
+
= 3.3.9 - 2019-08-13 =
|
465 |
|
466 |
* Fix PHP notice that shows up if meta=no
|
467 |
|
468 |
|
469 |
+
= 3.3.8 - 2019-08-12 =
|
470 |
|
471 |
* - Fix issue with AMP pages not showing image
|
472 |
* - In the short code, separate behavior of meta into author, date and time
|
476 |
* - Add ability to show date/time in local timezone
|
477 |
|
478 |
|
479 |
+
= 3.3.7 - 2019-06-15 =
|
480 |
|
481 |
* Fix: Not working in the block editor
|
482 |
* Feat: Referral URL can now include the URL of the item as a parameter
|
485 |
* Fix: Widget options not visible in theme customizer
|
486 |
|
487 |
|
488 |
+
= 3.3.6 - 2019-05-03 =
|
489 |
|
490 |
* Add filter to disable DB caching
|
491 |
* Fix issue with HTML tags not closed when feed has no items
|
493 |
* Tested up to WP 5.2
|
494 |
|
495 |
|
496 |
+
= 3.3.5 - 2019-02-24 =
|
497 |
|
498 |
* Tested with WP 5.1
|
499 |
* Fix issue with single feeds that have errors
|
500 |
|
501 |
|
502 |
+
= 3.3.4 - 2019-02-08 =
|
503 |
|
504 |
* Multifeed shows an error and no content if even one feed has an error
|
505 |
|
506 |
|
507 |
+
= 3.3.3 - 2019-01-31 =
|
508 |
|
509 |
* Customize error message when no items in the feed
|
510 |
* Outgoing links should have rel=noopener
|
511 |
* Fixed fatal error in Feedzy_Rss_Feeds_Admin_Abstract::feedzy_retrieve_image
|
512 |
|
513 |
|
514 |
+
= 3.3.2 - 2018-12-22 =
|
515 |
|
516 |
* Option to handle HTTP images in the shortcode
|
517 |
* Option to specify nofollow for links in the shortcode
|
520 |
* Add support for extracting price from custom feed tags
|
521 |
|
522 |
|
523 |
+
= 3.3.1 - 2018-11-05 =
|
524 |
|
525 |
* Import Posts enabled for plan 1 users
|
526 |
* Fixed issue with some idiosyncratic feeds
|
527 |
|
528 |
|
529 |
+
= 3.3.0 - 2018-08-21 =
|
530 |
|
531 |
* Improve readme plugin description.
|
532 |
* Improves compatibility with Gutenberg plugin.
|
533 |
* Improves image detection from feeds.
|
534 |
|
535 |
|
536 |
+
= 3.2.12 - 2018-08-16 =
|
537 |
|
538 |
* Fixed compatibility with the Gutenberg block
|
539 |
* Added option to disable the featured image from being added to the website RSS feed
|
541 |
* Updated the readme file
|
542 |
|
543 |
|
544 |
+
= 3.2.11 - 2018-06-26 =
|
545 |
|
546 |
* New Gutenberg block for Feedzy RSS Feeds
|
547 |
* Fixed curl SSL problem with Feeds with HTTPS
|
549 |
* Added compatibility with the pro version for full text import
|
550 |
|
551 |
|
552 |
+
= 3.2.10 - 2018-04-02 =
|
553 |
|
554 |
* Adds shortcode attribute for feed items order ( title ASC/DESC, date ASC/DESC).
|
555 |
+
* Improve documentation and examples.
|
556 |
|
557 |
|
558 |
+
= 3.2.9 - 2018-03-07 =
|
559 |
|
560 |
+
* Automatically fix deprecated google news feeds.
|
561 |
* Improve compatibility with the pro version.
|
562 |
|
563 |
|
564 |
+
= 3.2.8 - 2018-02-20 =
|
565 |
|
566 |
* Fix issue with medium feeds.
|
567 |
+
* Improves extensibility using various hooks.
|
568 |
* Fix feeds without schema protocol.
|
569 |
|
570 |
|
571 |
+
= 3.2.7 - 2018-01-05 =
|
572 |
|
573 |
* Fix compatibility with SiteOrigin Page Builder.
|
574 |
* Adds full content import from feed.
|
575 |
* Fix issue with img scraped from articles.
|
576 |
|
577 |
|
578 |
+
= 3.2.6 - 2017-11-16 =
|
579 |
|
580 |
* Adds compatibility with WordPress 4.9
|
581 |
|
593 |
* Removes duplicates readme.md files.
|
594 |
|
595 |
|
596 |
+
= 3.2.1 - 2017-10-12 =
|
597 |
|
598 |
+
* Adds global settings page.
|
599 |
+
* Adds User Agent and Proxy settings.
|
600 |
* Fix for some edge cases regarding images in the feed.
|
601 |
|
602 |
|
603 |
+
= 3.2.0 - 2017-08-17 =
|
604 |
|
605 |
+
* Fix for image URL issue following some strange patterns.
|
606 |
* Added fallback for broken feed, now if one feed from the list is not working, others will will be used.
|
607 |
* Added shortcode parameter for feed cache control.
|
608 |
|
609 |
|
610 |
+
= 3.1.10 - 2017-08-03 =
|
611 |
|
612 |
* Fixed typos in shortcode builder.
|
613 |
* Fixed image encoding issue.
|
614 |
|
615 |
|
616 |
+
= 3.1.9 - 2017-07-21 =
|
617 |
|
618 |
* Fixed issue with fetching images containg GET parameters.
|
619 |
|
620 |
|
621 |
+
= 3.1.8 - 2017-07-17 =
|
622 |
|
623 |
* Fixed image fetching issues.
|
624 |
* Fixed link opening behaviour
|
625 |
* Improved description ( Thanks to @chesio )
|
626 |
|
627 |
|
628 |
+
= 3.1.7 =
|
629 |
|
630 |
* Added new sdk logic.
|
631 |
* Improved compatibility with the pro version.
|
872 |
* IMPORTANT: You have to reactivate the plugin after its update!
|
873 |
|
874 |
= 1.0 =
|
875 |
+
* First release.
|
themeisle-hash.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"feedzy-rss-feed.php":"
|
1 |
+
{"feedzy-rss-feed.php":"5f3fa2e46a20bb0fef58e80c26d54f3c","index.php":"71c0755260138a4b7b2182c3c61179f6","uninstall.php":"cdb21f8648e005cbb9c73481d1750186"}
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer' . '/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer' . '/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit55c9138d606d6424213dd73e17be7aea::getLoader();
|
vendor/autoload_52.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInitd4e9f92887553a14b75f5c51c46e7a85::getLoader();
|
vendor/codeinwp/themeisle-sdk/CHANGELOG.md
CHANGED
@@ -1,3 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
## [3.1.5](https://github.com/Codeinwp/themeisle-sdk/compare/v3.1.4...v3.1.5) (2019-09-11)
|
2 |
|
3 |
|
1 |
+
## [3.1.7](https://github.com/Codeinwp/themeisle-sdk/compare/v3.1.6...v3.1.7) (2019-11-07)
|
2 |
+
|
3 |
+
|
4 |
+
### Bug Fixes
|
5 |
+
|
6 |
+
* license field style on wp5.3 ([0239997](https://github.com/Codeinwp/themeisle-sdk/commit/0239997))
|
7 |
+
* license field style on wp5.3 ([86d3a1b](https://github.com/Codeinwp/themeisle-sdk/commit/86d3a1b))
|
8 |
+
|
9 |
+
## [3.1.6](https://github.com/Codeinwp/themeisle-sdk/compare/v3.1.5...v3.1.6) (2019-09-24)
|
10 |
+
|
11 |
+
|
12 |
+
### Bug Fixes
|
13 |
+
|
14 |
+
* remove license related options when deactivated ([02cd6ce](https://github.com/Codeinwp/themeisle-sdk/commit/02cd6ce))
|
15 |
+
* remove license related options when deactivated ([d3c1a1f](https://github.com/Codeinwp/themeisle-sdk/commit/d3c1a1f))
|
16 |
+
|
17 |
## [3.1.5](https://github.com/Codeinwp/themeisle-sdk/compare/v3.1.4...v3.1.5) (2019-09-11)
|
18 |
|
19 |
|
vendor/codeinwp/themeisle-sdk/load.php
CHANGED
@@ -14,7 +14,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
14 |
return;
|
15 |
}
|
16 |
// Current SDK version and path.
|
17 |
-
$themeisle_sdk_version = '3.1.
|
18 |
$themeisle_sdk_path = dirname( __FILE__ );
|
19 |
|
20 |
global $themeisle_sdk_max_version;
|
14 |
return;
|
15 |
}
|
16 |
// Current SDK version and path.
|
17 |
+
$themeisle_sdk_version = '3.1.7';
|
18 |
$themeisle_sdk_path = dirname( __FILE__ );
|
19 |
|
20 |
global $themeisle_sdk_max_version;
|
vendor/codeinwp/themeisle-sdk/src/Modules/Licenser.php
CHANGED
@@ -121,7 +121,9 @@ class Licenser extends Abstract_Module {
|
|
121 |
|
122 |
input.themeisle-sdk-license-input {
|
123 |
width: 300px;
|
124 |
-
padding:
|
|
|
|
|
125 |
}
|
126 |
|
127 |
.themeisle-sdk-license-deactivate-cta {
|
@@ -491,10 +493,19 @@ class Licenser extends Abstract_Module {
|
|
491 |
$this->reset_failed_checks();
|
492 |
}
|
493 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
494 |
if ( isset( $license_data->plan ) ) {
|
495 |
update_option( $this->product->get_key() . '_license_plan', $license_data->plan );
|
496 |
}
|
497 |
-
$this->set_error( '' );
|
498 |
update_option( $this->product->get_key() . '_license_data', $license_data );
|
499 |
set_transient( $this->product->get_key() . '_license_data', $license_data, 12 * HOUR_IN_SECONDS );
|
500 |
|
121 |
|
122 |
input.themeisle-sdk-license-input {
|
123 |
width: 300px;
|
124 |
+
padding: 0 8px;
|
125 |
+
line-height: 2;
|
126 |
+
min-height: 30px;
|
127 |
}
|
128 |
|
129 |
.themeisle-sdk-license-deactivate-cta {
|
493 |
$this->reset_failed_checks();
|
494 |
}
|
495 |
|
496 |
+
$this->set_error( '' );
|
497 |
+
|
498 |
+
if ( 'deactivate_license' === $api_params['edd_action'] ) {
|
499 |
+
|
500 |
+
delete_option( $this->product->get_key() . '_license_data' );
|
501 |
+
delete_option( $this->product->get_key() . '_license_plan' );
|
502 |
+
delete_transient( $this->product->get_key() . '_license_data' );
|
503 |
+
|
504 |
+
return;
|
505 |
+
}
|
506 |
if ( isset( $license_data->plan ) ) {
|
507 |
update_option( $this->product->get_key() . '_license_plan', $license_data->plan );
|
508 |
}
|
|
|
509 |
update_option( $this->product->get_key() . '_license_data', $license_data );
|
510 |
set_transient( $this->product->get_key() . '_license_data', $license_data, 12 * HOUR_IN_SECONDS );
|
511 |
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInitdde04ca7304efcf0e5fe0c767ec9d7ee
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
27 |
foreach ($map as $namespace => $path) {
|
@@ -42,14 +42,14 @@ class ComposerAutoloaderInitdde04ca7304efcf0e5fe0c767ec9d7ee
|
|
42 |
|
43 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
44 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
45 |
-
|
46 |
}
|
47 |
|
48 |
return $loader;
|
49 |
}
|
50 |
}
|
51 |
|
52 |
-
function
|
53 |
{
|
54 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
55 |
require $file;
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit55c9138d606d6424213dd73e17be7aea
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit55c9138d606d6424213dd73e17be7aea', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit55c9138d606d6424213dd73e17be7aea', 'loadClassLoader'));
|
25 |
|
26 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
27 |
foreach ($map as $namespace => $path) {
|
42 |
|
43 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
44 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
45 |
+
composerRequire55c9138d606d6424213dd73e17be7aea($fileIdentifier, $file);
|
46 |
}
|
47 |
|
48 |
return $loader;
|
49 |
}
|
50 |
}
|
51 |
|
52 |
+
function composerRequire55c9138d606d6424213dd73e17be7aea($fileIdentifier, $file)
|
53 |
{
|
54 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
55 |
require $file;
|
vendor/composer/autoload_real_52.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
-
class
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInitec3bdedfca8182bcb08deda126a1cd6a {
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
+
class ComposerAutoloaderInitd4e9f92887553a14b75f5c51c46e7a85 {
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInitd4e9f92887553a14b75f5c51c46e7a85', 'loadClassLoader'), true /*, true */);
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitd4e9f92887553a14b75f5c51c46e7a85', 'loadClassLoader'));
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|
vendor/composer/installed.json
CHANGED
@@ -6,12 +6,12 @@
|
|
6 |
"source": {
|
7 |
"type": "git",
|
8 |
"url": "https://github.com/Codeinwp/themeisle-sdk.git",
|
9 |
-
"reference": "
|
10 |
},
|
11 |
"dist": {
|
12 |
"type": "zip",
|
13 |
-
"url": "https://api.github.com/repos/Codeinwp/themeisle-sdk/zipball/
|
14 |
-
"reference": "
|
15 |
"shasum": ""
|
16 |
},
|
17 |
"require-dev": {
|
@@ -19,7 +19,7 @@
|
|
19 |
"squizlabs/php_codesniffer": "^3.1",
|
20 |
"wp-coding-standards/wpcs": "^1.0.0"
|
21 |
},
|
22 |
-
"time": "2019-
|
23 |
"type": "library",
|
24 |
"installation-source": "source",
|
25 |
"notification-url": "https://packagist.org/downloads/",
|
6 |
"source": {
|
7 |
"type": "git",
|
8 |
"url": "https://github.com/Codeinwp/themeisle-sdk.git",
|
9 |
+
"reference": "5162163ec2d609e0b61e382f8fcf6ad47cca3293"
|
10 |
},
|
11 |
"dist": {
|
12 |
"type": "zip",
|
13 |
+
"url": "https://api.github.com/repos/Codeinwp/themeisle-sdk/zipball/5162163ec2d609e0b61e382f8fcf6ad47cca3293",
|
14 |
+
"reference": "5162163ec2d609e0b61e382f8fcf6ad47cca3293",
|
15 |
"shasum": ""
|
16 |
},
|
17 |
"require-dev": {
|
19 |
"squizlabs/php_codesniffer": "^3.1",
|
20 |
"wp-coding-standards/wpcs": "^1.0.0"
|
21 |
},
|
22 |
+
"time": "2019-11-07 12:16:41",
|
23 |
"type": "library",
|
24 |
"installation-source": "source",
|
25 |
"notification-url": "https://packagist.org/downloads/",
|