Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created October 16, 2019 05:56
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 plugin-republic/644fef6303875fb0904ed6cac93acda8 to your computer and use it in GitHub Desktop.
Save plugin-republic/644fef6303875fb0904ed6cac93acda8 to your computer and use it in GitHub Desktop.
<?php
/**
* Filter the step parameter in Number fields
*/
function prefix_number_field_step( $step, $item ) {
return 1;
}
add_filter( 'pewc_number_field_step', 'prefix_number_field_step', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment