wp_notify_moderator() WP 1.0.0

Повідомляє поштою адміністратора та автора запису про додавання нового коментаря або пінгу, який чекає на перевірку.

Зверніть увагу лише для коментів на перевірці!

Функція не буде працювати взагалі, якщо в налаштуваннях не вказано опцію: “Налаштування > Обговорення > Надіслати мені листа, коли > Коментар чекає перевірки”:

comment

Тобто. функція залежить від опції moderation_notify , щоб увімкнути роботу функції у будь-якому випадку, можна використовувати фільтр notify_moderator

Якщо автор запису не має прав редагувати коментарі, то він повідомлення не отримає.

Це init .

Заміна функції (перевизначення) — у плагіні можна створити функцію з такою самою назвою, тоді вона замінить поточну функцію.

Повертає

true.

Використання

wp_notify_moderator( $comment_id );
$comment_id
(число) (обов’язковий)
ID нового коментаря.

Приклади

0

#1 Змінимо стандартну функцію

Щоб змінити функцію як нам заманеться, потрібно створити плагін з таким кодом:

<?php
/*
Plugin Name: Заміна базової функції wp_notify_moderator()
*/

if ( !function_exists('wp_notify_moderator') ){
	function wp_notify_moderator($comment_id) {
		// тут код функції, можна скопіювати базовий код і змінити свої потреби
	}
}
?>

нотатки

  • Global. wpdb. $wpdb WordPress database abstraction object.

Використовуйте notify_moderator filter , щоб визначити, в якому місці moderator повинен бути notified, overriding site setting.

список змін

З версії 1.0.0Введено.

Код wp_notify_moderator() WP 6.0.2

function wp_notify_moderator( $comment_id ) {
	Global $wpdb;

	$maybe_notify = get_option( 'moderation_notify');

	/**
	 * Filters whether to send the site moderator email notifications, overriding the site setting.
	 *
	 * @ Since 4.4.0
	 *
	 * @param bool $maybe_notify Whether to notify blog moderator.
	 * @param int $comment_ID ID для коментаря для notification.
	 */
	$maybe_notify = apply_filters( 'notify_moderator', $maybe_notify, $comment_id );

	if ( ! $maybe_notify ) {
		return true;
	}

	$ comment = get_comment ($ comment_id);
	$post = get_post( $comment->comment_post_ID );
	$user = get_userdata( $post->post_author );
	// Повернутися до громадськості і до електронної пошти, якщо автор може змінити коментар.
	$emails = array( get_option( 'admin_email' ) );
	if ( $user && user_can( $user->ID, 'edit_comment', $comment_id ) && ! empty( $user->user_email ) ) {
		if ( 0 !== strcasecmp( $user->user_email, get_option( 'admin_email' ) ) ) ) {
			$emails[] = $user->user_email;
		}
	}

	$ switched_locale = switch_to_locale( get_locale() );

	$comment_author_domain = '';
	if ( WP_Http::is_ip_address( $comment->comment_author_IP ) ) {
		$comment_author_domain = gethostbyaddr( $comment->comment_author_IP );
	}

	$comments_waiting = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '0'" );

	// Вхідний блог name is escaped with esc_html() on the way in database in sanitize_option().
	// We want to reverse this for the plain text arena of emails.
	$blogname = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
	$comment_content = wp_specialchars_decode( $comment->comment_content );

	switch ( $comment->comment_type ) {
		case 'trackback':
			/* translators: %s: Post title. */
			$notify_message = sprintf( __( 'Новий trackback на post "%s" is waiting for your approval' ), $post->post_title ) . "rn";
			$notify_message .= get_permalink( $comment->comment_post_ID ) . "nrn";
			/* translators: 1: Trackback/pingback website name, 2: Website IP address, 3: Website hostname. */
			$notify_message .= sprintf( __( 'Website: %1$s (IP address: %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "rn";
			/* translators: %s: Trackback/pingback/comment author URL. */
			$notify_message .= sprintf( __( 'URL: %s' ), ​​$comment->comment_author_url ) . "rn";
			$notify_message .= __( 'Trackback excerpt: ' ) . "rn" . $comment_content . "nrn";
			break;

		case 'pingback':
			/* translators: %s: Post title. */
			$notify_message = sprintf( __( 'Новий pingback на post "%s" is waiting for your approval' ), $post->post_title ) . "rn";
			$notify_message .= get_permalink( $comment->comment_post_ID ) . "nrn";
			/* translators: 1: Trackback/pingback website name, 2: Website IP address, 3: Website hostname. */
			$notify_message .= sprintf( __( 'Website: %1$s (IP address: %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "rn";
			/* translators: %s: Trackback/pingback/comment author URL. */
			$notify_message .= sprintf( __( 'URL: %s' ), ​​$comment->comment_author_url ) . "rn";
			$notify_message .= __( 'Pingback excerpt: ' ) . "rn" . $comment_content . "nrn";
			break;

		default // Comments.
			/* translators: %s: Post title. */
			$notify_message = sprintf( __( 'Новий коментар на сайті "%s" is waiting for your approval' ), $post->post_title ) . "rn";
			$notify_message .= get_permalink( $comment->comment_post_ID ) . "nrn";
			/* translators: 1: Comment author's name, 2: Comment author's IP address, 3: Comment author's hostname. */
			$notify_message .= sprintf( __( 'Author: %1$s (IP address: %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "rn";
			/* translators: %s: Comment author email. */
			$notify_message .= sprintf( __( 'Email: %s' ), ​​$comment->comment_author_email ) . "rn";
			/* translators: %s: Trackback/pingback/comment author URL. */
			$notify_message .= sprintf( __( 'URL: %s' ), ​​$comment->comment_author_url ) . "rn";

			if ( $comment->comment_parent ) {
				/* translators: Comment moderation. %s: Parent comment edit URL. */
				$notify_message .= sprintf( __( 'In reply to: %s' ), ​​admin_url( "comment.php?action=editcomment&c={$comment->comment_parent}#wpbody-content" ) ) . "rn";
			}

			/* translators: %s: Comment text. */
			$notify_message .= sprintf( __( 'Comment: %s' ), ​​"rn" . $comment_content ) . "nrn";
			break;
	}

	/* translators: Comment moderation. %s: Comment action URL. */
	$notify_message .= sprintf( __( 'Approve it: %s' ), ​​admin_url( "comment.php?action=approve&c={$comment_id}#wpbody-content" ) ) . "rn";

	if ( EMPTY_TRASH_DAYS ) {
		/* translators: Comment moderation. %s: Comment action URL. */
		$notify_message .= sprintf( __( 'Trash it: %s' ), ​​admin_url( "comment.php?action=trash&c={$comment_id}#wpbody-content" ) ) . "rn";
	} else {
		/* translators: Comment moderation. %s: Comment action URL. */
		$notify_message .= sprintf( __( 'Delete it: %s' ), ​​admin_url( "comment.php?action=delete&c={$comment_id}#wpbody-content" ) ) . "rn";
	}

	/* translators: Comment moderation. %s: Comment action URL. */
	$notify_message .= sprintf( __( 'Spam it: %s' ), ​​admin_url( "comment.php?action=spam&c={$comment_id}#wpbody-content" ) ) . "rn";

	$notify_message .= sprintf(
		/* translators: Comment moderation. %s: Number of comments awaiting approval. */
		_n(
			'Currently %s comment is waiting for approval. Please visit the moderation panel:',
			'Currently %s comments are waiting for approval. Please visit the moderation panel:',
			$comments_waiting
		),
		number_format_i18n( $comments_waiting )
	). "rn";
	$notify_message .= admin_url( 'edit-comments.php?comment_status=moderated#wpbody-content' ) . "rn";

	/* translators: Comment moderation notification email subject. 1: Site title, 2: Post title. */
	$subject = sprintf( __( '[%1$s] Please moderate: "%2$s"' ), $blogname, $post->post_title );
	$message_headers = '';

	/**
	 * Filters List of recipients for comment moderation emails.
	 *
	 * @ Since 3.7.0
	 *
	 * @param string[] $emails List of email address to notify for comment moderation.
	 * @param int $comment_id Comment ID.
	 */
	$emails = apply_filters( 'comment_moderation_recipients', $emails, $comment_id );

	/**
	 * Filters the comment moderation email text.
	 *
	 * @ Since 1.5.2
	 *
	 * @param string $notify_message Text of comment moderation email.
	 * @param int $comment_id Comment ID.
	 */
	$notify_message = apply_filters( 'comment_moderation_text', $notify_message, $comment_id );

	/**
	 * Filters comment moderation email subject.
	 *
	 * @ Since 1.5.2
	 *
	 * @param string $subject Subject of comment moderation email.
	 * @param int $comment_id Comment ID.
	 */
	$subject = apply_filters( 'comment_moderation_subject', $subject, $comment_id );

	/**
	 * Filters comment moderation email headers.
	 *
	 * @ Since 2.8.0
	 *
	 * @param string $message_headers Headers for comment moderation email.
	 * @param int $comment_id Comment ID.
	 */
	$message_headers = apply_filters( 'comment_moderation_headers', $message_headers, $comment_id );

	foreach ($emails as $email) {
		wp_mail ($ email, wp_specialchars_decode ($ subject), $ notify_message, $ message_headers);
	}

	if ($ switched_locale) {
		restore_previous_locale();
	}

	return true;
}

Залишити відповідь

Ваша e-mail адреса не оприлюднюватиметься. Обов’язкові поля позначені *