Releases: leocaseiro/WordPress-Plugin-Custom-Options-Plus
Releases · leocaseiro/WordPress-Plugin-Custom-Options-Plus
1.8.0
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
- Implement Import and Export #5 thanks @lucasbhjf
- Add shortcut to Settings from Plugin Page
- Add .editorconfig and .jscs to make sure contributors follow WordPress Coding Standards
Version 1.6
Set all fields as required Fix Issue #6