woocommerce_comments()WC 1.0

Output the Review comments template.

Хуков нет.

Возвращает

null. Ничего (null).

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

woocommerce_comments( $comment, $args, $depth );
$comment(WP_Comment) (обязательный)
Comment object.
$args(массив) (обязательный)
Arguments.
$depth(int) (обязательный)
Depth.

Код woocommerce_comments() WC 8.7.0

function woocommerce_comments( $comment, $args, $depth ) {
	// phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
	$GLOBALS['comment'] = $comment;
	wc_get_template(
		'single-product/review.php',
		array(
			'comment' => $comment,
			'args'    => $args,
			'depth'   => $depth,
		)
	);
}