-
-
Save Shelob9/415b614e58ca2e11f502b6336110ef70 to your computer and use it in GitHub Desktop.
CMB2 Number Field
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
array( | |
'name' => __( 'Postive numbers', 'theme-domain' ), | |
'desc' => __( 'Numbers only', 'msft-newscenter' ), | |
'id' => $prefix . 'number', | |
'type' => 'text', | |
'attributes' => array( | |
'type' => 'number', | |
'pattern' => '\d*', | |
), | |
'sanitization_cb' => 'absint', | |
'escape_cb' => 'absint', | |
), | |
array( | |
'name' => __( 'Numbers', 'theme-domain' ), | |
'desc' => __( 'Numbers only', 'msft-newscenter' ), | |
'id' => $prefix . 'number', | |
'type' => 'text', | |
'attributes' => array( | |
'type' => 'number', | |
'pattern' => '\d*', | |
), | |
'sanitization_cb' => 'intval', | |
'escape_cb' => 'intval', | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I stole your updates: https://gist.github.com/jtsternberg/c09f5deb7d818d0d170b