Skip to content

Instantly share code, notes, and snippets.

@alexmigf
Created March 28, 2018 11:06
Show Gist options
  • Select an option

  • Save alexmigf/849ccecad6678a0f14b58d83ccadf8d3 to your computer and use it in GitHub Desktop.

Select an option

Save alexmigf/849ccecad6678a0f14b58d83ccadf8d3 to your computer and use it in GitHub Desktop.
Add Checkbox to Join Newsletter on WordPress Registration Form
//
// 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