Created
March 28, 2018 11:06
-
-
Save alexmigf/849ccecad6678a0f14b58d83ccadf8d3 to your computer and use it in GitHub Desktop.
Add Checkbox to Join Newsletter on WordPress Registration Form
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
| // | |
| // Part 2: E-mail list MAGIC | |
| // | |
| // | |
| // A. Checkbox to join list on registration form | |
| // | |
| add_action( 'register_form', 'ac_email_opt_in' ); | |
| function ac_email_opt_in() { ?> | |
| <p> | |
| <label style="font-size:13px;"> | |
| <input type="checkbox" name="email_opt_in" id="email_opt_in" class="input" checked="checked" value="1" <?php checked( $_POST['email_opt_in'], 1 ); ?> tabindex="99" style="width:12px; padding:0; margin:0 3px 0 0; font-size: 13px;" /> | |
| Join our famous e-mail list | |
| </label> | |
| </p> | |
| <br/> | |
| <?php } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment