Skip to content

Releases: leocaseiro/WordPress-Plugin-Custom-Options-Plus

1.8.0

19 Oct 23:18
Compare
Choose a tag to compare

get_customs() second parameter returns a collection (optional). Thanks @kas-cor

Usage:

    // Second parameter set to true for get_customs returns a collection(array) with `label` and `value`
    $array = get_customs('array_name', true);
    foreach ( $array as $name ) :
        echo $name['label'] . ' - '. $name['value'];
    endforeach;

Import and Export

10 Sep 01:26
Compare
Choose a tag to compare

Version 1.6

04 Feb 22:45
Compare
Choose a tag to compare

Set all fields as required Fix Issue #6

Version 1.5 Release

17 Sep 23:25
Compare
Choose a tag to compare
  • Lot of best practices improvements on code
  • ESCAPE bug fix following suggestion from @pierre-r on github Issue #4
  • SQL Injection improvement using correctly $wpdp->prepare
  • Plugin Version added
  • Admin Layout improvements
  • Automatic name generated only on Add New mode