Version Description
- 22/05/2017 =
- Fixed span alt tag, replaced with title.
Download this release
Release Info
| Developer | codeinwp |
| Plugin | |
| Version | 3.1.1 |
| Comparing to | |
| See all releases | |
Code changes from version 3.1.0 to 3.1.1
- CHANGELOG.md +7 -0
- css/feedzy-rss-feeds.css +1 -1
- feedzy-rss-feed.php +1 -1
- includes/abstract/feedzy-rss-feeds-admin-abstract.php +4 -4
- includes/feedzy-rss-feeds.php +1 -1
- readme.txt +7 -1
- vendor/autoload.php +1 -1
- vendor/autoload_52.php +1 -1
- vendor/composer/autoload_real.php +3 -3
- vendor/composer/autoload_real_52.php +3 -3
CHANGELOG.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
| 1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
### v3.1.0 - 2017-05-17
|
| 3 |
**Changes:**
|
| 4 |
- Added feed to post compatibility
|
| 1 |
|
| 2 |
+
### v3.1.1 - 2017-05-23
|
| 3 |
+
**Changes:**
|
| 4 |
+
|
| 5 |
+
### v3.1.1 - 2017-05-22
|
| 6 |
+
**Changes:**
|
| 7 |
+
- Replace alt in span with title
|
| 8 |
+
|
| 9 |
### v3.1.0 - 2017-05-17
|
| 10 |
**Changes:**
|
| 11 |
- Added feed to post compatibility
|
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.1.
|
| 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.1.1
|
| 6 |
* Plugin Name: FEEDZY RSS Feeds
|
| 7 |
* Plugin URI: http://themeisle.com/plugins/feedzy-rss-feeds/
|
| 8 |
* Author: Themeisle
|
feedzy-rss-feed.php
CHANGED
|
@@ -15,7 +15,7 @@
|
|
| 15 |
* Plugin Name: Feedzy RSS Feeds Lite
|
| 16 |
* Plugin URI: https://themeisle.com/plugins/feedzy-rss-feeds-lite/
|
| 17 |
* Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area.
|
| 18 |
-
* Version: 3.1.
|
| 19 |
* Author: Themeisle
|
| 20 |
* Author URI: http://themeisle.com
|
| 21 |
* License: GPL-2.0+
|
| 15 |
* Plugin Name: Feedzy RSS Feeds Lite
|
| 16 |
* Plugin URI: https://themeisle.com/plugins/feedzy-rss-feeds-lite/
|
| 17 |
* Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area.
|
| 18 |
+
* Version: 3.1.1
|
| 19 |
* Author: Themeisle
|
| 20 |
* Author URI: http://themeisle.com
|
| 21 |
* License: GPL-2.0+
|
includes/abstract/feedzy-rss-feeds-admin-abstract.php
CHANGED
|
@@ -574,16 +574,16 @@ abstract class Feedzy_Rss_Feeds_Admin_Abstract {
|
|
| 574 |
if ( ( ! empty( $theThumbnail ) && $sc['thumb'] == 'auto' ) || $sc['thumb'] == 'yes' ) {
|
| 575 |
if ( ! empty( $theThumbnail ) ) {
|
| 576 |
$theThumbnail = $this->feedzy_image_encode( $theThumbnail );
|
| 577 |
-
$contentThumb .= '<span class="fetched" style="background-image: url(' . $theThumbnail . ');"
|
| 578 |
}
|
| 579 |
if ( $sc['thumb'] == 'yes' ) {
|
| 580 |
-
$contentThumb .= '<span class="default" style="background-image:url(' . $sc['default'] . ');"
|
| 581 |
}
|
| 582 |
}
|
| 583 |
$contentThumb = apply_filters( 'feedzy_thumb_output', $contentThumb, $feedURL, $sizes );
|
| 584 |
} else {
|
| 585 |
$contentThumb = '';
|
| 586 |
-
$contentThumb .= '<span class="default" style="width:' . $sizes['width'] . 'px; height:' . $sizes['height'] . 'px; background-image:url(' . $sc['default'] . ');"
|
| 587 |
$contentThumb = apply_filters( 'feedzy_thumb_output', $contentThumb, $feedURL, $sizes );
|
| 588 |
}
|
| 589 |
$contentTitle = '';
|
|
@@ -613,7 +613,7 @@ abstract class Feedzy_Rss_Feeds_Admin_Abstract {
|
|
| 613 |
if ( $authorName ) {
|
| 614 |
$domain = parse_url( $newLink );
|
| 615 |
$authorURL = 'http://' . $domain['host'];
|
| 616 |
-
$authorURL = apply_filters( 'feedzy_author_url', $authorURL, $feedURL );
|
| 617 |
$contentMeta .= __( 'by', 'feedzy-rss-feeds' ) . ' <a href="http://' . $authorURL . '" target="' . $sc['target'] . '" title="' . $domain['host'] . '" >' . $authorName . '</a> ';
|
| 618 |
}
|
| 619 |
}
|
| 574 |
if ( ( ! empty( $theThumbnail ) && $sc['thumb'] == 'auto' ) || $sc['thumb'] == 'yes' ) {
|
| 575 |
if ( ! empty( $theThumbnail ) ) {
|
| 576 |
$theThumbnail = $this->feedzy_image_encode( $theThumbnail );
|
| 577 |
+
$contentThumb .= '<span class="fetched" style="background-image: url(' . $theThumbnail . ');" title="' . $item->get_title() . '"></span>';
|
| 578 |
}
|
| 579 |
if ( $sc['thumb'] == 'yes' ) {
|
| 580 |
+
$contentThumb .= '<span class="default" style="background-image:url(' . $sc['default'] . ');" title="' . $item->get_title() . '"></span>';
|
| 581 |
}
|
| 582 |
}
|
| 583 |
$contentThumb = apply_filters( 'feedzy_thumb_output', $contentThumb, $feedURL, $sizes );
|
| 584 |
} else {
|
| 585 |
$contentThumb = '';
|
| 586 |
+
$contentThumb .= '<span class="default" style="width:' . $sizes['width'] . 'px; height:' . $sizes['height'] . 'px; background-image:url(' . $sc['default'] . ');" title="' . $item->get_title() . '"></span>';
|
| 587 |
$contentThumb = apply_filters( 'feedzy_thumb_output', $contentThumb, $feedURL, $sizes );
|
| 588 |
}
|
| 589 |
$contentTitle = '';
|
| 613 |
if ( $authorName ) {
|
| 614 |
$domain = parse_url( $newLink );
|
| 615 |
$authorURL = 'http://' . $domain['host'];
|
| 616 |
+
$authorURL = apply_filters( 'feedzy_author_url', $authorURL, $authorName, $feedURL );
|
| 617 |
$contentMeta .= __( 'by', 'feedzy-rss-feeds' ) . ' <a href="http://' . $authorURL . '" target="' . $sc['target'] . '" title="' . $domain['host'] . '" >' . $authorName . '</a> ';
|
| 618 |
}
|
| 619 |
}
|
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.1.
|
| 108 |
self::$instance->load_dependencies();
|
| 109 |
self::$instance->set_locale();
|
| 110 |
self::$instance->define_admin_hooks();
|
| 104 |
*/
|
| 105 |
public function init() {
|
| 106 |
self::$plugin_name = 'feedzy-rss-feeds';
|
| 107 |
+
self::$version = '3.1.1';
|
| 108 |
self::$instance->load_dependencies();
|
| 109 |
self::$instance->set_locale();
|
| 110 |
self::$instance->define_admin_hooks();
|
readme.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
=== FEEDZY RSS Feeds Lite ===
|
| 2 |
-
Contributors: themeisle,codeinwp
|
| 3 |
Tags: RSS, SimplePie, shortcode, feed, thumbnail, image, rss feeds, aggregator, tinyMCE, WYSIWYG, MCE, UI, flux, plugin, WordPress, widget, importer, XML, ATOM, API, parser
|
| 4 |
Requires at least: 3.7
|
| 5 |
Tested up to: 4.7.5
|
|
@@ -190,6 +190,9 @@ http://docs.themeisle.com/article/567-how-to-display-rss-feed-time-and-date-in-l
|
|
| 190 |
= How to change author url =
|
| 191 |
http://docs.themeisle.com/article/636-how-to-change-author-url
|
| 192 |
|
|
|
|
|
|
|
|
|
|
| 193 |
== Screenshots ==
|
| 194 |
|
| 195 |
1. Simple example
|
|
@@ -200,6 +203,9 @@ http://docs.themeisle.com/article/636-how-to-change-author-url
|
|
| 200 |
|
| 201 |
== Changelog ==
|
| 202 |
|
|
|
|
|
|
|
|
|
|
| 203 |
= 3.1.0 - 17/05/2017 =
|
| 204 |
* Added feed categories for grouping urls.
|
| 205 |
* Added support for feed to post feature.
|
| 1 |
=== FEEDZY RSS Feeds Lite ===
|
| 2 |
+
Contributors: themeisle,codeinwp,hardeepasrani
|
| 3 |
Tags: RSS, SimplePie, shortcode, feed, thumbnail, image, rss feeds, aggregator, tinyMCE, WYSIWYG, MCE, UI, flux, plugin, WordPress, widget, importer, XML, ATOM, API, parser
|
| 4 |
Requires at least: 3.7
|
| 5 |
Tested up to: 4.7.5
|
| 190 |
= How to change author url =
|
| 191 |
http://docs.themeisle.com/article/636-how-to-change-author-url
|
| 192 |
|
| 193 |
+
= How remove feed items duplicates by url =
|
| 194 |
+
http://docs.themeisle.com/article/638-how-to-eliminate-duplicate-feed-item
|
| 195 |
+
|
| 196 |
== Screenshots ==
|
| 197 |
|
| 198 |
1. Simple example
|
| 203 |
|
| 204 |
== Changelog ==
|
| 205 |
|
| 206 |
+
= 3.1.1 - 22/05/2017 =
|
| 207 |
+
* Fixed span alt tag, replaced with title.
|
| 208 |
+
|
| 209 |
= 3.1.0 - 17/05/2017 =
|
| 210 |
* Added feed categories for grouping urls.
|
| 211 |
* Added support for feed to post feature.
|
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 ComposerAutoloaderInitd47900c88dcb06d0771a90eff9f7db98::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 ComposerAutoloaderInit7b23871f1933733f5ae138f0de992846::getLoader();
|
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 ComposerAutoloaderInit1ab4b5c4638c8aecf421507f8571639f
|
|
| 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) {
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
+
class ComposerAutoloaderInitd47900c88dcb06d0771a90eff9f7db98
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
| 19 |
return self::$loader;
|
| 20 |
}
|
| 21 |
|
| 22 |
+
spl_autoload_register(array('ComposerAutoloaderInitd47900c88dcb06d0771a90eff9f7db98', 'loadClassLoader'), true, true);
|
| 23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
| 24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitd47900c88dcb06d0771a90eff9f7db98', 'loadClassLoader'));
|
| 25 |
|
| 26 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
| 27 |
foreach ($map as $namespace => $path) {
|
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 ComposerAutoloaderInit1a088dcd21d9a5f47e8a1d0f8ab468e1 {
|
|
| 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 ComposerAutoloaderInit7b23871f1933733f5ae138f0de992846 {
|
| 6 |
private static $loader;
|
| 7 |
|
| 8 |
public static function loadClassLoader($class) {
|
| 19 |
return self::$loader;
|
| 20 |
}
|
| 21 |
|
| 22 |
+
spl_autoload_register(array('ComposerAutoloaderInit7b23871f1933733f5ae138f0de992846', 'loadClassLoader'), true /*, true */);
|
| 23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
| 24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit7b23871f1933733f5ae138f0de992846', 'loadClassLoader'));
|
| 25 |
|
| 26 |
$vendorDir = dirname(dirname(__FILE__));
|
| 27 |
$baseDir = dirname($vendorDir);
|
