예제 #1
0
/**
 * Adds WP-Members custom fields to the WP Add New User form
 *
 * @since 2.9.1
 */
function wpmem_admin_add_new_user()
{
    include_once WPMEM_PATH . '/native-registration.php';
    echo wpmem_do_wp_newuser_form();
    return;
}
예제 #2
0
/**
 * Adds WP-Members custom fields to the WP Add New User form.
 *
 * @since 2.9.1
 */
function wpmem_admin_add_new_user()
{
    /**
     * Load WP native registration functions.
     */
    include_once WPMEM_PATH . 'inc/wp-registration.php';
    // Output the custom registration fields.
    echo wpmem_do_wp_newuser_form();
    return;
}