WC_Comments::update_comment_type()public staticWC 3.5.0

Update comment type of product reviews.

Метод класса: WC_Comments{}

Хуков нет.

Возвращает

Массив.

Использование

$result = WC_Comments::update_comment_type( $comment_data );
$comment_data(массив) (обязательный)
Comment data.

Список изменений

С версии 3.5.0 Введена.

Код WC_Comments::update_comment_type() WC 8.7.0

public static function update_comment_type( $comment_data ) {
	if ( ! is_admin() && isset( $_POST['comment_post_ID'], $comment_data['comment_type'] ) && self::is_default_comment_type( $comment_data['comment_type'] ) && 'product' === get_post_type( absint( $_POST['comment_post_ID'] ) ) ) { // WPCS: input var ok, CSRF ok.
		$comment_data['comment_type'] = 'review';
	}

	return $comment_data;
}