Changeset 37508 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 05/22/2016 06:34:03 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r37315 r37508 175 175 176 176 /** 177 * Filter the wp_mail() arguments.177 * Filters the wp_mail() arguments. 178 178 * 179 179 * @since 2.2.0 … … 330 330 331 331 /** 332 * Filter the email address to send from.332 * Filters the email address to send from. 333 333 * 334 334 * @since 2.2.0 … … 339 339 340 340 /** 341 * Filter the name to associate with the "from" email address.341 * Filters the name to associate with the "from" email address. 342 342 * 343 343 * @since 2.3.0 … … 417 417 418 418 /** 419 * Filter the wp_mail() content type.419 * Filters the wp_mail() content type. 420 420 * 421 421 * @since 2.3.0 … … 438 438 439 439 /** 440 * Filter the default wp_mail() charset.440 * Filters the default wp_mail() charset. 441 441 * 442 442 * @since 2.3.0 … … 514 514 515 515 /** 516 * Filter whether a set of user login credentials are valid.516 * Filters whether a set of user login credentials are valid. 517 517 * 518 518 * A WP_User object is returned if the credentials authenticate a user. … … 721 721 722 722 /** 723 * Filter the authentication cookie.723 * Filters the authentication cookie. 724 724 * 725 725 * @since 2.5.0 … … 803 803 if ( $remember ) { 804 804 /** 805 * Filter the duration of the authentication cookie expiration period.805 * Filters the duration of the authentication cookie expiration period. 806 806 * 807 807 * @since 2.8.0 … … 832 832 833 833 /** 834 * Filter whether the connection is secure.834 * Filters whether the connection is secure. 835 835 * 836 836 * @since 3.1.0 … … 842 842 843 843 /** 844 * Filter whether to use a secure cookie when logged-in.844 * Filters whether to use a secure cookie when logged-in. 845 845 * 846 846 * @since 3.1.0 … … 968 968 969 969 /** 970 * Filter whether to use a secure authentication redirect.970 * Filters whether to use a secure authentication redirect. 971 971 * 972 972 * @since 3.1.0 … … 991 991 } else { 992 992 /** 993 * Filter the authentication redirect scheme.993 * Filters the authentication redirect scheme. 994 994 * 995 995 * @since 2.9.0 … … 1144 1144 1145 1145 /** 1146 * Filter the redirect location.1146 * Filters the redirect location. 1147 1147 * 1148 1148 * @since 2.1.0 … … 1154 1154 1155 1155 /** 1156 * Filter the redirect status code.1156 * Filters the redirect status code. 1157 1157 * 1158 1158 * @since 2.3.0 … … 1248 1248 1249 1249 /** 1250 * Filter the redirect fallback URL for when the provided redirect is not safe (local).1250 * Filters the redirect fallback URL for when the provided redirect is not safe (local). 1251 1251 * 1252 1252 * @since 4.3.0 … … 1312 1312 1313 1313 /** 1314 * Filter the whitelist of hosts to redirect to.1314 * Filters the whitelist of hosts to redirect to. 1315 1315 * 1316 1316 * @since 2.3.0 … … 1357 1357 1358 1358 /** 1359 * Filter the list of email addresses to receive a comment notification.1359 * Filters the list of email addresses to receive a comment notification. 1360 1360 * 1361 1361 * By default, only post authors are notified of comments. This filter allows … … 1379 1379 1380 1380 /** 1381 * Filter whether to notify comment authors of their comments on their own posts.1381 * Filters whether to notify comment authors of their comments on their own posts. 1382 1382 * 1383 1383 * By default, comment authors aren't notified of their comments on their own … … 1485 1485 1486 1486 /** 1487 * Filter the comment notification email text.1487 * Filters the comment notification email text. 1488 1488 * 1489 1489 * @since 1.5.2 … … 1495 1495 1496 1496 /** 1497 * Filter the comment notification email subject.1497 * Filters the comment notification email subject. 1498 1498 * 1499 1499 * @since 1.5.2 … … 1505 1505 1506 1506 /** 1507 * Filter the comment notification email headers.1507 * Filters the comment notification email headers. 1508 1508 * 1509 1509 * @since 1.5.2 … … 1542 1542 1543 1543 /** 1544 * Filter whether to send the site moderator email notifications, overriding the site setting.1544 * Filters whether to send the site moderator email notifications, overriding the site setting. 1545 1545 * 1546 1546 * @since 4.4.0 … … 1617 1617 1618 1618 /** 1619 * Filter the list of recipients for comment moderation emails.1619 * Filters the list of recipients for comment moderation emails. 1620 1620 * 1621 1621 * @since 3.7.0 … … 1627 1627 1628 1628 /** 1629 * Filter the comment moderation email text.1629 * Filters the comment moderation email text. 1630 1630 * 1631 1631 * @since 1.5.2 … … 1637 1637 1638 1638 /** 1639 * Filter the comment moderation email subject.1639 * Filters the comment moderation email subject. 1640 1640 * 1641 1641 * @since 1.5.2 … … 1647 1647 1648 1648 /** 1649 * Filter the comment moderation email headers.1649 * Filters the comment moderation email headers. 1650 1650 * 1651 1651 * @since 2.8.0 … … 1766 1766 function wp_nonce_tick() { 1767 1767 /** 1768 * Filter the lifespan of nonces in seconds.1768 * Filters the lifespan of nonces in seconds. 1769 1769 * 1770 1770 * @since 2.5.0 … … 1798 1798 if ( ! $uid ) { 1799 1799 /** 1800 * Filter whether the user who generated the nonce is logged out.1800 * Filters whether the user who generated the nonce is logged out. 1801 1801 * 1802 1802 * @since 3.5.0 … … 1910 1910 if ( isset( $cached_salts[ $scheme ] ) ) { 1911 1911 /** 1912 * Filter the WordPress salt.1912 * Filters the WordPress salt. 1913 1913 * 1914 1914 * @since 2.5.0 … … 2057 2057 2058 2058 /** 2059 * Filter whether the plaintext password matches the encrypted password.2059 * Filters whether the plaintext password matches the encrypted password. 2060 2060 * 2061 2061 * @since 2.5.0 … … 2110 2110 2111 2111 /** 2112 * Filter the randomly-generated password.2112 * Filters the randomly-generated password. 2113 2113 * 2114 2114 * @since 3.0.0 … … 2299 2299 2300 2300 /** 2301 * Filter whether to retrieve the avatar URL early.2301 * Filters whether to retrieve the avatar URL early. 2302 2302 * 2303 2303 * Passing a non-null value will effectively short-circuit get_avatar(), passing … … 2358 2358 2359 2359 /** 2360 * Filter the avatar to retrieve.2360 * Filters the avatar to retrieve. 2361 2361 * 2362 2362 * @since 2.5.0
Note: See TracChangeset
for help on using the changeset viewer.