wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_new_comment_via_rest_notify_postauthor › WordPress Function

Seit6.9.0
Veraltetn/v
wp_new_comment_via_rest_notify_postauthor ( $comment )
Parameter:
  • (WP_Comment) $comment The comment object.
    Erforderlich: Ja
Definiert in:
Codex:

Send a notification to the post author when a new note is added via the REST API.



Quellcode

function wp_new_comment_via_rest_notify_postauthor( $comment ) {
	if ( $comment instanceof WP_Comment && 'note' === $comment->comment_type ) {
		wp_new_comment_notify_postauthor( (int) $comment->comment_ID );
	}
}