View deploy-via-rsync.yml
This file contains 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
name: Deploy via rsync | |
# Controls when the action will run. Workflow runs when manually triggered using the UI | |
# or API. | |
# | |
# To add additional options, such as triggering when the main branch is updated, add: | |
# on: | |
# push: | |
# branches: | |
# - main |
View wordpress-open-edit-post-tabs.js
This file contains 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
/** | |
* Note: Most browsers will have pop-up blockers on - you'll need to allow your domain | |
* through the pop-up blocker in order for this to work. Also, I'd suggest limiting your | |
* post view to 20 max, or whatever you're comfortable with. However many posts are in the | |
* list view, is how many tabs will open! | |
*/ | |
// jQuery version: | |
jQuery(".iedit .edit a").each((i, el) => { window.open(jQuery(el).attr("href"), "_blank"); }); |
View gmb-get-cids.js
This file contains 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
/** | |
* Instructions: | |
* | |
* 1. Visit your Google My Business admin section to view the "Businesses" table. | |
* If there is a "See your profile" button on the far right, this script might | |
* help you scrape for the Google Maps CIDs. | |
* | |
* 2. Open console, copy/paste this script there and execute. Data should get | |
* copied to the clipboard at the end of script. | |
* |