- http://stackoverflow.com/questions/804115 (
rebasevsmerge). - https://www.atlassian.com/git/tutorials/merging-vs-rebasing (
rebasevsmerge) - https://www.atlassian.com/git/tutorials/undoing-changes/ (
resetvscheckoutvsrevert) - http://stackoverflow.com/questions/2221658 (HEAD^ vs HEAD~) (See
git rev-parse) - http://stackoverflow.com/questions/292357 (
pullvsfetch) - http://stackoverflow.com/questions/39651 (
stashvsbranch) - http://stackoverflow.com/questions/8358035 (
resetvscheckoutvsrevert)
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 copy above. | |
| add_action('widgets_init', 'cabeymer_unregister_widgets', 10); | |
| /** | |
| * Unregister Various Widgets | |
| * Clean up your widgets.php page | |
| * Single comment out the ones you want to keep | |
| */ |
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
| 1/46 [--name=<name>]: Fagor QVR-1 Single Door Reach-in Refrigerator | |
| 2/46 [--slug=<slug>]: used-fagor-QVR-1-single-door-reach-in-cooler | |
| 3/46 [--type=<type>]: | |
| 4/46 [--status=<status>]: draft | |
| 5/46 [--featured=<featured>]: y | |
| 6/46 [--catalog_visibility=<catalog_visibility>]: | |
| 7/46 [--description=<description>]: Only in use for about 2-3 years, still in great shape on the outside and in | |
| 8/46 [--short_description=<short_description>]: Came from a lower volume ice cream shop, very little use on this unit and the only we've had in a while. Call (843) 744-2632 - measures 84" tall, 27.5" wide, 31.5" deep | |
| 9/46 [--sku=<sku>]: | |
| 10/46 [--regular_price=<regular_price>]: 2100 |
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 | |
| # just add the needed form IDs to the array | |
| $forms = array( '6', '7' ); | |
| # looping through the array to add an 'add_filter' for each | |
| foreach ( $forms as $i => $form ) | |
| add_filter( "gform_field_validation_{$form}", 'custom_zip_validation', 10, 4 ); | |
| # the function |
OlderNewer