WC_Comments::update_comment_type( array $comment_data )
Update comment type of product reviews.
Description Description
Parameters Parameters
- $comment_data
-
(Required) Comment data.
Return Return
(array)
Source Source
File: includes/class-wc-comments.php
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; }
Changelog Changelog
Version | Description |
---|---|
3.5.0 | Introduced. |