Skip to content

Instantly share code, notes, and snippets.

@sbruner
Created April 18, 2016 19:56
Show Gist options
  • Save sbruner/fabf4ea4831382e8d0222186535e0d08 to your computer and use it in GitHub Desktop.
Save sbruner/fabf4ea4831382e8d0222186535e0d08 to your computer and use it in GitHub Desktop.
<?php
add_filter('piklist_validation_rules', 'check_valid_number', 11);
function check_valid_number($validation_rules)
{
$validation_rules['my_number'] = array(
'rule' => "/[-+]?[0-9]*[.,]?[0-9]+/"
,'message' => __('is not a number')
);
return $validation_rules;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment