Plugin Directory

Changeset 866189


Ignore:
Timestamp:
02/27/2014 03:13:24 PM (12 years ago)
Author:
viriava
Message:

update readme

Location:
acf-range-field
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • acf-range-field/tags/1.1.0/readme.txt

    r866186 r866189  
    11=== Advanced Custom Fields: Range Field ===
    22Contributors: viriava
    3 Tags:
    4 Requires at least: 4.2.0
    5 Tested up to: 4.3.2
     3Donate link: http://www.crazyxhtml.com
     4Tags: acf, field, range, jquery
     5Requires at least: 3.0.1
     6Tested up to: 3.8
    67Stable tag: 1.1
    78License: GPLv2 or later
     
    1213== Description ==
    1314
    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.
     15This 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/
    1516
    16 = Compatibility =
    17 
    18 This add-on will work with:
    19 
    20 * Advanced Custom Fields version 4 and up
     17Read more here: https://github.com/viriava/acf-field-range
    2118
    2219== Installation ==
     
    3936    include_once('acf-range/acf-range.php');
    4037}
     38
    4139`
    42 == Frequently Asked Questions  ==
     40
     41== Frequently Asked Questions ==
     42
     43= What does it return? =
     44
     45If the type is Default, it returns the number.
     46
     47If the type is Range, it returns an array of minimum and maximum numbers.
    4348
    4449
    45 **What does it return?**
     50        array(2) {
     51            ["min"]=> float(0)
     52            ["max"]=> float(0)
     53        }
    4654
    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)
    4855
    4956== Screenshots ==
    5057
    51 1. Screenshort
    52 
     581. Default look
    5359
    5460== Changelog ==
  • acf-range-field/trunk/readme.txt

    r866186 r866189  
    11=== Advanced Custom Fields: Range Field ===
    22Contributors: viriava
    3 Tags:
    4 Requires at least: 4.2.0
    5 Tested up to: 4.3.2
     3Donate link: http://www.crazyxhtml.com
     4Tags: acf, field, range, jquery
     5Requires at least: 3.0.1
     6Tested up to: 3.8
    67Stable tag: 1.1
    78License: GPLv2 or later
     
    1213== Description ==
    1314
    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.
     15This 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/
    1516
    16 = Compatibility =
    17 
    18 This add-on will work with:
    19 
    20 * Advanced Custom Fields version 4 and up
     17Read more here: https://github.com/viriava/acf-field-range
    2118
    2219== Installation ==
     
    3936    include_once('acf-range/acf-range.php');
    4037}
     38
    4139`
    42 == Frequently Asked Questions  ==
     40
     41== Frequently Asked Questions ==
     42
     43= What does it return? =
     44
     45If the type is Default, it returns the number.
     46
     47If the type is Range, it returns an array of minimum and maximum numbers.
    4348
    4449
    45 **What does it return?**
     50        array(2) {
     51            ["min"]=> float(0)
     52            ["max"]=> float(0)
     53        }
    4654
    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)
    4855
    4956== Screenshots ==
    5057
    51 1. Screenshort
    52 
     581. Default look
    5359
    5460== Changelog ==
Note: See TracChangeset for help on using the changeset viewer.