Skip to content

Instantly share code, notes, and snippets.

@alessandrotesoro
Created October 20, 2015 09:28
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 alessandrotesoro/84369b9bd0f3438d43fc to your computer and use it in GitHub Desktop.
Save alessandrotesoro/84369b9bd0f3438d43fc to your computer and use it in GitHub Desktop.
Example of adding custom content above registration form in WPUM
function wpum_my_custom_content() {
?>
here goes your custom content.
<?php
}
add_action('wpum_before_register_form_template', 'wpum_my_custom_content');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment