Changeset 52205 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 11/18/2021 01:55:36 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r52083 r52205 1585 1585 * 1586 1586 * @param string[] $emails An array of email addresses to receive a comment notification. 1587 * @param int $comment_id The comment ID.1587 * @param string $comment_id The comment ID as a numeric string. 1588 1588 */ 1589 1589 $emails = apply_filters( 'comment_notification_recipients', $emails, $comment->comment_ID ); … … 1606 1606 * @since 3.8.0 1607 1607 * 1608 * @param bool $notify Whether to notify the post author of their own comment.1609 * Default false.1610 * @param int $comment_id The comment ID.1608 * @param bool $notify Whether to notify the post author of their own comment. 1609 * Default false. 1610 * @param string $comment_id The comment ID as a numeric string. 1611 1611 */ 1612 1612 $notify_author = apply_filters( 'comment_notification_notify_author', false, $comment->comment_ID ); … … 1741 1741 * 1742 1742 * @param string $notify_message The comment notification email text. 1743 * @param int $comment_id Comment ID.1743 * @param string $comment_id Comment ID as a numeric string. 1744 1744 */ 1745 1745 $notify_message = apply_filters( 'comment_notification_text', $notify_message, $comment->comment_ID ); … … 1751 1751 * 1752 1752 * @param string $subject The comment notification email subject. 1753 * @param int $comment_id Comment ID.1753 * @param string $comment_id Comment ID as a numeric string. 1754 1754 */ 1755 1755 $subject = apply_filters( 'comment_notification_subject', $subject, $comment->comment_ID ); … … 1761 1761 * 1762 1762 * @param string $message_headers Headers for the comment notification email. 1763 * @param int $comment_id Comment ID.1763 * @param string $comment_id Comment ID as a numeric string. 1764 1764 */ 1765 1765 $message_headers = apply_filters( 'comment_notification_headers', $message_headers, $comment->comment_ID );
Note: See TracChangeset
for help on using the changeset viewer.