Version Description
- Added empty alt tag to images to pass vaidation
=
Download this release
Release Info
Developer | nathanrice |
Plugin | WP-Cycle |
Version | 0.1.4 |
Comparing to | |
See all releases |
Code changes from version 0.1.3 to 0.1.4
- readme.txt +5 -2
- wp-cycle.php +2 -2
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: nathanrice
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5553118
|
4 |
Tags: slideshow, images, jquery cycle
|
5 |
Requires at least: 2.7
|
6 |
-
Tested up to: 2.8
|
7 |
-
Stable tag: 0.1.
|
8 |
|
9 |
This plugin creates an image slideshow in your theme, using the jQuery Cycle plugin. You can upload/delete images via the administration panel, and display the images in your theme by using the <code>wp_cycle();</code> template tag, which will generate all the necessary HTML for outputting the rotating images.
|
10 |
|
@@ -86,6 +86,9 @@ Yes. Here are some things that I want to eventually include:
|
|
86 |
* Changed some wording in the settings
|
87 |
* Upgraded jQuery Cycle plugin from 2.63 to 2.65
|
88 |
|
|
|
|
|
|
|
89 |
== Using this plugin with themes ==
|
90 |
|
91 |
If you are a theme author and what to make your theme compatible with this plugin, you have a couple of options.
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5553118
|
4 |
Tags: slideshow, images, jquery cycle
|
5 |
Requires at least: 2.7
|
6 |
+
Tested up to: 2.8.1
|
7 |
+
Stable tag: 0.1.4
|
8 |
|
9 |
This plugin creates an image slideshow in your theme, using the jQuery Cycle plugin. You can upload/delete images via the administration panel, and display the images in your theme by using the <code>wp_cycle();</code> template tag, which will generate all the necessary HTML for outputting the rotating images.
|
10 |
|
86 |
* Changed some wording in the settings
|
87 |
* Upgraded jQuery Cycle plugin from 2.63 to 2.65
|
88 |
|
89 |
+
= 0.1.4 =
|
90 |
+
* Added empty alt tag to images to pass vaidation
|
91 |
+
|
92 |
== Using this plugin with themes ==
|
93 |
|
94 |
If you are a theme author and what to make your theme compatible with this plugin, you have a couple of options.
|
wp-cycle.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP-Cycle
|
4 |
Plugin URI: http://www.nathanrice.net/plugins/wp-cycle/
|
5 |
Description: This plugin creates an image slideshow from the images you upload using the jQuery Cycle plugin. You can upload/delete images via the administration panel, and display the images in your theme by using the <code>wp_cycle();</code> template tag, which will generate all the necessary HTML for outputting the rotating images.
|
6 |
-
Version: 0.1.
|
7 |
Author: Nathan Rice
|
8 |
Author URI: http://www.nathanrice.net/
|
9 |
|
@@ -409,7 +409,7 @@ function wp_cycle($args = array(), $content = null) {
|
|
409 |
if($data['image_links_to'])
|
410 |
echo '<a href="'.$data['image_links_to'].'">';
|
411 |
|
412 |
-
echo '<img src="'.$data['file_url'].'" width="'.$wp_cycle_settings['img_width'].'" height="'.$wp_cycle_settings['img_height'].'" class="'.$data['id'].'" />';
|
413 |
|
414 |
if($data['image_links_to'])
|
415 |
echo '</a>';
|
3 |
Plugin Name: WP-Cycle
|
4 |
Plugin URI: http://www.nathanrice.net/plugins/wp-cycle/
|
5 |
Description: This plugin creates an image slideshow from the images you upload using the jQuery Cycle plugin. You can upload/delete images via the administration panel, and display the images in your theme by using the <code>wp_cycle();</code> template tag, which will generate all the necessary HTML for outputting the rotating images.
|
6 |
+
Version: 0.1.4
|
7 |
Author: Nathan Rice
|
8 |
Author URI: http://www.nathanrice.net/
|
9 |
|
409 |
if($data['image_links_to'])
|
410 |
echo '<a href="'.$data['image_links_to'].'">';
|
411 |
|
412 |
+
echo '<img src="'.$data['file_url'].'" width="'.$wp_cycle_settings['img_width'].'" height="'.$wp_cycle_settings['img_height'].'" class="'.$data['id'].'" alt="" />';
|
413 |
|
414 |
if($data['image_links_to'])
|
415 |
echo '</a>';
|