Version Description
- Fixed minor bug from 0.1.9
Download this release
Release Info
Developer | nathanrice |
Plugin | WP-Cycle |
Version | 0.1.10 |
Comparing to | |
See all releases |
Code changes from version 0.1.9 to 0.1.10
- readme.txt +5 -2
- wp-cycle.php +4 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: slideshow, images, jquery cycle
|
5 |
Requires at least: 2.9
|
6 |
Tested up to: 3.0.1
|
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 |
|
@@ -100,4 +100,7 @@ Yes. Here are some things that I want to eventually include:
|
|
100 |
* Added `position: relative;` to the slideshow div
|
101 |
|
102 |
= 0.1.9 =
|
103 |
-
* Moved script and args to the `wp_footer` hook
|
|
|
|
|
|
4 |
Tags: slideshow, images, jquery cycle
|
5 |
Requires at least: 2.9
|
6 |
Tested up to: 3.0.1
|
7 |
+
Stable tag: 0.1.10
|
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 |
|
100 |
* Added `position: relative;` to the slideshow div
|
101 |
|
102 |
= 0.1.9 =
|
103 |
+
* Moved script and args to the `wp_footer` hook
|
104 |
+
|
105 |
+
= 0.1.10 =
|
106 |
+
* Fixed minor bug from 0.1.9
|
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 |
|
@@ -460,7 +460,9 @@ jQuery(document).ready(function($) {
|
|
460 |
<?php }
|
461 |
|
462 |
add_action( 'wp_head', 'wp_cycle_style' );
|
463 |
-
function wp_cycle_style() {
|
|
|
|
|
464 |
|
465 |
<style type="text/css" media="screen">
|
466 |
#<?php echo $wp_cycle_settings['div']; ?> {
|
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.10
|
7 |
Author: Nathan Rice
|
8 |
Author URI: http://www.nathanrice.net/
|
9 |
|
460 |
<?php }
|
461 |
|
462 |
add_action( 'wp_head', 'wp_cycle_style' );
|
463 |
+
function wp_cycle_style() {
|
464 |
+
global $wp_cycle_settings;
|
465 |
+
?>
|
466 |
|
467 |
<style type="text/css" media="screen">
|
468 |
#<?php echo $wp_cycle_settings['div']; ?> {
|