Changeset 49153 for trunk/src/wp-includes/user.php
- Timestamp:
- 10/15/2020 12:14:51 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r49148 r49153 1605 1605 * @param int|false $user_id The user ID associated with the username, 1606 1606 * or false if the username does not exist. 1607 * @param string $username Username to check.1607 * @param string $username The username to check for existence. 1608 1608 */ 1609 1609 return apply_filters( 'username_exists', $user_id, $username ); … … 1619 1619 * @since 2.1.0 1620 1620 * 1621 * @param string $email Email.1621 * @param string $email The email to check for existence. 1622 1622 * @return int|false The user ID on success, false on failure. 1623 1623 */ … … 1637 1637 * @param int|false $user_id The user ID associated with the email, 1638 1638 * or false if the email does not exist. 1639 * @param string $email Email.1639 * @param string $email The email to check for existence. 1640 1640 */ 1641 1641 return apply_filters( 'email_exists', $user_id, $email );
Note: See TracChangeset
for help on using the changeset viewer.