woocommerce_review_display_gravatar( array $comment )

Display the review authors gravatar


Description Description


Parameters Parameters

$comment

(Required) WP_Comment.


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/wc-template-functions.php

	function woocommerce_review_display_gravatar( $comment ) {
		echo get_avatar( $comment, apply_filters( 'woocommerce_review_gravatar_size', '60' ), '' );
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.