wpmu_active_signup WordPress Filter Hook
The wpmu_active_signup hook allows you to define how new users are registered on your site. By default, WordPress uses the standard WordPress registration process, but with this hook, you can customise the registration process to better suit your needs. For example, you could use this hook to create a custom registration form or to integrate with a third-party registration system.
apply_filters( 'wpmu_active_signup', string $active_signup ) #
Filters the type of site sign-up.
Contents
Parameters
- $active_signup
(string)String that returns registration type. The value can be 'all', 'none', 'blog', or 'user'.
Source
File: wp-signup.php
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |