| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
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 | |
| /** | |
| * Pantheon drush alias file, to be placed in your ~/.drush directory or the aliases | |
| * directory of your local Drush home. Once it's in place, clear drush cache: | |
| * | |
| * drush cc drush | |
| * | |
| * To see all your available aliases: | |
| * | |
| * drush sa |
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
| /*To find what the current siteurl is*/ | |
| SELECT option_value | |
| FROM wp_options | |
| WHERE option_name = "home" | |
| OR option_name = "siteurl" | |
| LIMIT 1; | |
| /*update site and home url siteurl*/ | |
| UPDATE wp_options | |
| SET option_value = "http://newlink" |