This script finds all your wordpress sites under a specific parent directory and then loops through them and prompts you to accept or reject an upgrade for plugins, themes and wordpress core. # find all Wordpress installs WP_SITES=`find /path/to/your/sites/root -regex...
Wordpress
Adding BCC to Divi Contact Form
The Divi contact form allows you to send to multiple email addresses by opening the properties of the form and entering multiple comma separated email addresses but they end up all in the To: field Adding BCC to Emails using a functions.php Snippet You need to edit...
Adding custom values to Contact Form 7
https://www.wpguru.com.au/generate-dynamic-tag-contact-form-7/ From the above URL is this code. Just putting it here so I can find it again <?php add_action('wpcf7_init', 'custom_code_generator'); function custom_code_generator(){ wpcf7_add_form_tag('coupon_code',...
Create a WordPress Page Tab that leads to a non WordPress URL
I have my Wordpress setup to display all the blog posts on the front page and the Wordpress "Pages" as tabs on the navigation at the top of the page. However I also would like the navigation to point to other non Wordpress areas of my domain and go straight there. For...