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 | |
| /* | |
| Term Archive Pages: | |
| - http://example.com/recipes/dinner/ | |
| - http://example.com/recipes/breakfast,brunch/ | |
| Single Recipe Pages: | |
| - http://example.com/recipes/dinner/soup-title/ |
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
| Global setup | |
| git config --global user.name "Andrea" | |
| git config --global user.email "[email protected]" | |
| Create a new repository | |
| git clone [email protected]:stilografico/test2.git | |
| cd test2 |
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
| /*GRAVITY FORMS CLEANUP*/ | |
| Delete orphan entries from rg_lead_detail_long | |
| SELECT * FROM wp_rg_lead_detail_long | |
| LEFT JOIN wp_rg_lead_detail ON (wp_rg_lead_detail_long.lead_detail_id = wp_rg_lead_detail.lead_id) | |
| WHERE (wp_rg_lead_detail.lead_id IS NULL) | |
| DELETE wp_rg_lead_detail_long FROM wp_rg_lead_detail_long | |
| LEFT JOIN wp_rg_lead_detail ON (wp_rg_lead_detail_long.lead_detail_id = wp_rg_lead_detail.lead_id) |