after_signup_site WordPress Action Hook

After a user signs up for a WordPress site, they are typically redirected to the home page. However, with the after_signup_site hook, you can redirect the user to any page on the site. This is useful for directing the user to a page with more information about the site, or for directing the user to a page where they can set up their profile.

do_action( 'after_signup_site', string $domain, string $path, string $title, string $user, string $user_email, string $key, array $meta ) #

Fires after site signup information has been written to the database.


Parameters

$domain

(string)The requested domain.

$path

(string)The requested path.

$title

(string)The requested site title.

$user

(string)The user's requested login name.

$user_email

(string)The user's email address.

$key

(string)The user's activation key.

$meta

(array)Signup meta data. By default, contains the requested privacy setting and lang_id.


Top ↑

Source

File: wp-includes/ms-functions.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
4.4.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.

Show More
Show More