Skip to content

Instantly share code, notes, and snippets.

@Shelob9
Last active November 9, 2018 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shelob9/f4804135e30154c829caea95d1d63310 to your computer and use it in GitHub Desktop.
Save Shelob9/f4804135e30154c829caea95d1d63310 to your computer and use it in GitHub Desktop.
<?php
/**
* Add ceil to allowed Caldera Forms math functions
*/
add_filter( 'caldera_forms_field_util_math_functions', function( $functions ){
$functions[] = 'ceil';
return $functions;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment