Skip to content

Instantly share code, notes, and snippets.

@nefeline
Created September 20, 2017 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nefeline/c3d62de20b0aeae68fc59e5fddcc01b4 to your computer and use it in GitHub Desktop.
Save nefeline/c3d62de20b0aeae68fc59e5fddcc01b4 to your computer and use it in GitHub Desktop.
Creates a new Register button in CE login form
<?php
/**
* Create a new register button in Community Events Login Form.
*/
add_action('tribe_community_after_login_form', 'modern_tribe_register_button', 10, 2 );
function modern_tribe_register_button() {
wp_register( '<button id="register">', '</button>', true );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment