Created
October 20, 2015 09:28
-
-
Save alessandrotesoro/84369b9bd0f3438d43fc to your computer and use it in GitHub Desktop.
Example of adding custom content above registration form in WPUM
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
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