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.


Parameters

$active_signup

(string)String that returns registration type. The value can be 'all', 'none', 'blog', or 'user'.


Top ↑

Source

File: wp-signup.php

View on Trac


Top ↑

Changelog

Changelog
VersionDescription
3.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.