| Shortcut | Description |
|---|---|
| Ctrl+Shift+P | command prompt |
| Ctrl+Alt+P | switch project |
| Ctrl+P | go to file |
| Ctrl+G | go to line |
This file contains hidden or 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
| <?php | |
| //don't add this above | |
| //change the hook and the function name | |
| function yourprefix_woocommerce_function_does_what() { | |
| if ( ! class_exists( 'WooCommerce' ) ) return; | |
This file contains hidden or 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
| <?php | |
| /* | |
| Plugin Name: R Debug | |
| Description: Set of dump helpers for debug. | |
| Author: Andrey "Rarst" Savchenko | |
| Author URI: https://www.rarst.net/ | |
| License: MIT | |
| */ |
This file contains hidden or 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
| /** | |
| * @Push and element onto the end of an array with associative key | |
| * | |
| * @param array $array | |
| * | |
| * @string $key | |
| * | |
| * @mixed $value | |
| * | |
| * @return array |
This file contains hidden or 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
| /* 4 column Gravity Forms custom ready class ------------------------------------------------------*/ | |
| .gform_wrapper .top_label li.gfield.gf_first_quarter, | |
| .gform_wrapper .top_label li.gfield.gf_second_quarter, | |
| .gform_wrapper .top_label li.gfield.gf_third_quarter, | |
| .gform_wrapper .top_label li.gfield.gf_fourth_quarter { | |
| margin:0 0 8px 0; | |
| width:24%; | |
| } |