Version Description
- Fixed a PHP error
Download this release
Release Info
Developer | WPZOOM |
Plugin | Instagram Widget by WPZOOM |
Version | 2.0.5 |
Comparing to | |
See all releases |
Code changes from version 2.0.4 to 2.0.5
- class-wpzoom-instagram-assets.php +1 -1
- instagram-widget-by-wpzoom.php +2 -2
- readme.txt +3 -0
class-wpzoom-instagram-assets.php
CHANGED
@@ -286,7 +286,7 @@ if ( ! class_exists( 'WPZOOM_Instagram_Widget_Assets ' ) ) {
|
|
286 |
foreach( (array) $allwidgets as $widget ) {
|
287 |
foreach( (array) $widget as $widget_element ) {
|
288 |
foreach( (array)$widget_element as $value ) {
|
289 |
-
if( has_shortcode( $value, 'instagram' ) ) {
|
290 |
return true;
|
291 |
}
|
292 |
}
|
286 |
foreach( (array) $allwidgets as $widget ) {
|
287 |
foreach( (array) $widget as $widget_element ) {
|
288 |
foreach( (array)$widget_element as $value ) {
|
289 |
+
if( is_string( $value ) && has_shortcode( $value, 'instagram' ) ) {
|
290 |
return true;
|
291 |
}
|
292 |
}
|
instagram-widget-by-wpzoom.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WPZOOM Instagram Widget & Block
|
4 |
* Plugin URI: https://www.wpzoom.com/plugins/instagram-widget/
|
5 |
* Description: Instagram Widget is a customizable and responsive plugin, made to help you gain even more followers by showcasing your Instagram feed on your WordPress website.
|
6 |
-
* Version: 2.0.
|
7 |
* Author: WPZOOM
|
8 |
* Author URI: https://www.wpzoom.com/
|
9 |
* Text Domain: instagram-widget-by-wpzoom
|
@@ -19,7 +19,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
19 |
}
|
20 |
|
21 |
if ( ! defined( 'WPZOOM_INSTAGRAM_VERSION' ) ) {
|
22 |
-
define( 'WPZOOM_INSTAGRAM_VERSION', '2.0.
|
23 |
}
|
24 |
|
25 |
require_once plugin_dir_path( __FILE__ ) . 'class-wpzoom-instagram-image-uploader.php';
|
3 |
* Plugin Name: WPZOOM Instagram Widget & Block
|
4 |
* Plugin URI: https://www.wpzoom.com/plugins/instagram-widget/
|
5 |
* Description: Instagram Widget is a customizable and responsive plugin, made to help you gain even more followers by showcasing your Instagram feed on your WordPress website.
|
6 |
+
* Version: 2.0.5
|
7 |
* Author: WPZOOM
|
8 |
* Author URI: https://www.wpzoom.com/
|
9 |
* Text Domain: instagram-widget-by-wpzoom
|
19 |
}
|
20 |
|
21 |
if ( ! defined( 'WPZOOM_INSTAGRAM_VERSION' ) ) {
|
22 |
+
define( 'WPZOOM_INSTAGRAM_VERSION', '2.0.5' );
|
23 |
}
|
24 |
|
25 |
require_once plugin_dir_path( __FILE__ ) . 'class-wpzoom-instagram-image-uploader.php';
|
readme.txt
CHANGED
@@ -96,6 +96,9 @@ Yes, you can find the documentation for this plugin with more instructions on ou
|
|
96 |
|
97 |
== Changelog ==
|
98 |
|
|
|
|
|
|
|
99 |
= 2.0.4 =
|
100 |
* Fixed an issue with some feeds not showing new posts
|
101 |
|
96 |
|
97 |
== Changelog ==
|
98 |
|
99 |
+
= 2.0.5 =
|
100 |
+
* Fixed a PHP error
|
101 |
+
|
102 |
= 2.0.4 =
|
103 |
* Fixed an issue with some feeds not showing new posts
|
104 |
|