Tested in Mac OS X: super == command
Open/Goto
- super+t: go to file
- super+ctrl+p: go to project
- super+r: go to methods
| <?php | |
| $cmb->add_field( array( | |
| 'name' => __( 'Postive numbers', 'theme-domain' ), | |
| 'desc' => __( 'Numbers only', 'msft-newscenter' ), | |
| 'id' => $prefix . 'number', | |
| 'type' => 'text', | |
| 'attributes' => array( | |
| 'type' => 'number', | |
| 'pattern' => '\d*', |
| <?php | |
| /** | |
| * Customize Image Reloaded Class | |
| * | |
| * Extend WP_Customize_Image_Control allowing access to uploads made within | |
| * the same context | |
| */ | |
| class My_Customize_Image_Reloaded_Control extends WP_Customize_Image_Control { | |
| /** | |
| * Constructor. |
| function array_insert($array, $var, $position) | |
| { | |
| $before = array_slice($array, 0, $position); | |
| $after = array_slice($array, $position); | |
| $return = array_merge($before, (array) $var); | |
| return array_merge($return, $after); | |
| } |