Version Description
Download this release
Release Info
Developer | weblizar |
Plugin | Ultimate Responsive Image Slider Plugin |
Version | 3.0.5 |
Comparing to | |
See all releases |
Code changes from version 3.0.4 to 3.0.5
- readme.txt +4 -3
- ultimate-responsive-image-slider.php +2 -2
- uris-layout.php +5 -4
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Ultimate Responsive Image Slider ===
|
2 |
Contributors: weblizar
|
3 |
Donate link: http://www.weblizar.com/
|
4 |
-
Tags: slider,
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.8
|
7 |
-
Stable tag: 3.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -154,6 +154,7 @@ Please use WordPress [support forum](http://wordpress.org/support/plugin/ultimat
|
|
154 |
|
155 |
For more information, see Weblizar(http://wwww.weblizar.com/).
|
156 |
|
|
|
157 |
V 3.0.4 - Slide image blank alt text fixed
|
158 |
V 3.0.3 - version update + compatible upto wp 4.8
|
159 |
V 3.0.2 - compatible upto wp 4.7.5
|
1 |
=== Ultimate Responsive Image Slider ===
|
2 |
Contributors: weblizar
|
3 |
Donate link: http://www.weblizar.com/
|
4 |
+
Tags: slider, best slider plugin, image slide show, responsive slider, wordpress image slider plugin
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.8.1
|
7 |
+
Stable tag: 3.0.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
154 |
|
155 |
For more information, see Weblizar(http://wwww.weblizar.com/).
|
156 |
|
157 |
+
V 3.0.5 - version update + compatible upto wp 4.8 + SEO ready image slider
|
158 |
V 3.0.4 - Slide image blank alt text fixed
|
159 |
V 3.0.3 - version update + compatible upto wp 4.8
|
160 |
V 3.0.2 - compatible upto wp 4.7.5
|
ultimate-responsive-image-slider.php
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Ultimate Responsive Image Slider
|
4 |
-
* Version: 3.0.
|
5 |
* Description: Add unlimited image slides using Ultimate Responsive Image Slider in any Page and Post content to give an attractive mode to represent contents.
|
6 |
* Author: Weblizar
|
7 |
* Author URI: https://weblizar.com/plugins/ultimate-responsive-image-slider-pro/
|
8 |
* Plugin URI: https://weblizar.com/plugins/ultimate-responsive-image-slider-pro/
|
9 |
-
*/
|
10 |
|
11 |
//Constant Variable
|
12 |
define("WRIS_TEXT_DOMAIN", "W_R_I_S" );
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Ultimate Responsive Image Slider
|
4 |
+
* Version: 3.0.5
|
5 |
* Description: Add unlimited image slides using Ultimate Responsive Image Slider in any Page and Post content to give an attractive mode to represent contents.
|
6 |
* Author: Weblizar
|
7 |
* Author URI: https://weblizar.com/plugins/ultimate-responsive-image-slider-pro/
|
8 |
* Plugin URI: https://weblizar.com/plugins/ultimate-responsive-image-slider-pro/
|
9 |
+
*/
|
10 |
|
11 |
//Constant Variable
|
12 |
define("WRIS_TEXT_DOMAIN", "W_R_I_S" );
|
uris-layout.php
CHANGED
@@ -227,10 +227,11 @@ $j = 1;
|
|
227 |
if(count($attachment = $wpdb->get_col($wpdb->prepare("SELECT `post_title` FROM `$post_table_prefix` WHERE `guid` LIKE '%s'", $Url)))) {
|
228 |
// attachment title as alt
|
229 |
$slide_alt = $attachment[0];
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
|
|
234 |
} else {
|
235 |
// slide title as alt
|
236 |
$slide_alt = $Title;
|
227 |
if(count($attachment = $wpdb->get_col($wpdb->prepare("SELECT `post_title` FROM `$post_table_prefix` WHERE `guid` LIKE '%s'", $Url)))) {
|
228 |
// attachment title as alt
|
229 |
$slide_alt = $attachment[0];
|
230 |
+
if(empty($attachment[0])) {
|
231 |
+
// post title as alt
|
232 |
+
$slide_alt = get_the_title( $post_id );
|
233 |
+
}
|
234 |
+
}
|
235 |
} else {
|
236 |
// slide title as alt
|
237 |
$slide_alt = $Title;
|