Changeset 49078 for trunk/src/wp-includes/ms-functions.php
- Timestamp:
- 09/30/2020 09:52:27 PM (5 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/ms-functions.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-functions.php
r49028 r49078 1576 1576 1577 1577 /** 1578 * Notif y a user that their blog activation has beensuccessful.1578 * Notifies the site administrator that their site activation was successful. 1579 1579 * 1580 1580 * Filter {@see 'wpmu_welcome_notification'} to disable or bypass. … … 1585 1585 * @since MU (3.0.0) 1586 1586 * 1587 * @param int $blog_id BlogID.1587 * @param int $blog_id Site ID. 1588 1588 * @param int $user_id User ID. 1589 * @param string $password User password .1589 * @param string $password User password, or "N/A" if the user account is not new. 1590 1590 * @param string $title Site title. 1591 1591 * @param array $meta Optional. Signup meta data. By default, contains the requested privacy setting and lang_id. 1592 * @return bool 1592 * @return bool Whether the email notification was sent. 1593 1593 */ 1594 1594 function wpmu_welcome_notification( $blog_id, $user_id, $password, $title, $meta = array() ) { … … 1596 1596 1597 1597 /** 1598 * Filters whether to bypass the welcome email after site activation.1598 * Filters whether to bypass the welcome email sent to the site administrator after site activation. 1599 1599 * 1600 1600 * Returning false disables the welcome email. … … 1602 1602 * @since MU (3.0.0) 1603 1603 * 1604 * @param int|bool $blog_id BlogID.1605 * @param int $user_id User ID .1606 * @param string $password User password .1604 * @param int|bool $blog_id Site ID. 1605 * @param int $user_id User ID of the site administrator. 1606 * @param string $password User password, or "N/A" if the user account is not new. 1607 1607 * @param string $title Site title. 1608 1608 * @param array $meta Signup meta data. By default, contains the requested privacy setting and lang_id. … … 1646 1646 1647 1647 /** 1648 * Filters the content of the welcome email after site activation.1648 * Filters the content of the welcome email sent to the site administrator after site activation. 1649 1649 * 1650 1650 * Content should be formatted for transmission via wp_mail(). … … 1653 1653 * 1654 1654 * @param string $welcome_email Message body of the email. 1655 * @param int $blog_id BlogID.1656 * @param int $user_id User ID .1657 * @param string $password User password .1655 * @param int $blog_id Site ID. 1656 * @param int $user_id User ID of the site administrator. 1657 * @param string $password User password, or "N/A" if the user account is not new. 1658 1658 * @param string $title Site title. 1659 1659 * @param array $meta Signup meta data. By default, contains the requested privacy setting and lang_id. … … 1679 1679 1680 1680 /** 1681 * Filters the subject of the welcome email after site activation.1681 * Filters the subject of the welcome email sent to the site administrator after site activation. 1682 1682 * 1683 1683 * @since MU (3.0.0)
Note: See TracChangeset
for help on using the changeset viewer.