Changeset 866189
- Timestamp:
- 02/27/2014 03:13:24 PM (12 years ago)
- Location:
- acf-range-field
- Files:
-
- 2 edited
-
tags/1.1.0/readme.txt (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
acf-range-field/tags/1.1.0/readme.txt
r866186 r866189 1 1 === Advanced Custom Fields: Range Field === 2 2 Contributors: viriava 3 Tags: 4 Requires at least: 4.2.0 5 Tested up to: 4.3.2 3 Donate link: http://www.crazyxhtml.com 4 Tags: acf, field, range, jquery 5 Requires at least: 3.0.1 6 Tested up to: 3.8 6 7 Stable tag: 1.1 7 8 License: GPLv2 or later … … 12 13 == Description == 13 14 14 This is an add-on for the [Advanced Custom Fields](http://wordpress.org/extend/plugins/advanced-custom-fields/) WordPress plugin, that allows you to add a jQuery Range Slider field type. 15 This is an add-on for the [Advanced Custom Fields](http://wordpress.org/extend/plugins/advanced-custom-fields/) WordPress plugin, that allows you to add a jQuery Range Slider field type. http://jqueryui.com/slider/ 15 16 16 = Compatibility = 17 18 This add-on will work with: 19 20 * Advanced Custom Fields version 4 and up 17 Read more here: https://github.com/viriava/acf-field-range 21 18 22 19 == Installation == … … 39 36 include_once('acf-range/acf-range.php'); 40 37 } 38 41 39 ` 42 == Frequently Asked Questions == 40 41 == Frequently Asked Questions == 42 43 = What does it return? = 44 45 If the type is Default, it returns the number. 46 47 If the type is Range, it returns an array of minimum and maximum numbers. 43 48 44 49 45 **What does it return?** 50 array(2) { 51 ["min"]=> float(0) 52 ["max"]=> float(0) 53 } 46 54 47 If the type is Default, it returns the number. If the type is Range, it returns an array of minimum and maximum numbers. array('min'=>0, 'max'=>0)48 55 49 56 == Screenshots == 50 57 51 1. Screenshort 52 58 1. Default look 53 59 54 60 == Changelog == -
acf-range-field/trunk/readme.txt
r866186 r866189 1 1 === Advanced Custom Fields: Range Field === 2 2 Contributors: viriava 3 Tags: 4 Requires at least: 4.2.0 5 Tested up to: 4.3.2 3 Donate link: http://www.crazyxhtml.com 4 Tags: acf, field, range, jquery 5 Requires at least: 3.0.1 6 Tested up to: 3.8 6 7 Stable tag: 1.1 7 8 License: GPLv2 or later … … 12 13 == Description == 13 14 14 This is an add-on for the [Advanced Custom Fields](http://wordpress.org/extend/plugins/advanced-custom-fields/) WordPress plugin, that allows you to add a jQuery Range Slider field type. 15 This is an add-on for the [Advanced Custom Fields](http://wordpress.org/extend/plugins/advanced-custom-fields/) WordPress plugin, that allows you to add a jQuery Range Slider field type. http://jqueryui.com/slider/ 15 16 16 = Compatibility = 17 18 This add-on will work with: 19 20 * Advanced Custom Fields version 4 and up 17 Read more here: https://github.com/viriava/acf-field-range 21 18 22 19 == Installation == … … 39 36 include_once('acf-range/acf-range.php'); 40 37 } 38 41 39 ` 42 == Frequently Asked Questions == 40 41 == Frequently Asked Questions == 42 43 = What does it return? = 44 45 If the type is Default, it returns the number. 46 47 If the type is Range, it returns an array of minimum and maximum numbers. 43 48 44 49 45 **What does it return?** 50 array(2) { 51 ["min"]=> float(0) 52 ["max"]=> float(0) 53 } 46 54 47 If the type is Default, it returns the number. If the type is Range, it returns an array of minimum and maximum numbers. array('min'=>0, 'max'=>0)48 55 49 56 == Screenshots == 50 57 51 1. Screenshort 52 58 1. Default look 53 59 54 60 == Changelog ==
Note: See TracChangeset
for help on using the changeset viewer.