wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_new_comment_via_rest_notify_postauthor › WordPress Function

Since6.9.0
Deprecatedn/a
wp_new_comment_via_rest_notify_postauthor ( $comment )
Parameters:
  • (WP_Comment) $comment The comment object.
    Required: Yes
Defined at:
Codex:

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



Source

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 );
	}
}