Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wpmu_signup_blog_notification_subject

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
964            * @param string $subject    Subject of the notification email.
965            * @param string $domain     Site domain.
966            * @param string $path       Site path.
967            * @param string $title      Site title.
968            * @param string $user_login User login name.
969            * @param string $user_email User email address.
970            * @param string $key        Activation key created in wpmu_signup_blog().
971            * @param array  $meta       Signup meta data. By default, contains the requested privacy setting and lang_id.
972            */
973           apply_filters(
974                'wpmu_signup_blog_notification_subject',
975                /* translators: New site notification email subject. 1: Network name, 2: New site URL */
976                _x( '[%1$s] Activate %2$s', 'New site notification email subject' ),
977                $domain,
978                $path,
979                $title,
980                $user_login,
981                $user_email,
982                $key,