WC_Customer::get_avatar_url()publicWC 3.0.0

Return this customer's avatar.

Method of the class: WC_Customer{}

No Hooks.

Return

String.

Usage

$WC_Customer = new WC_Customer();
$WC_Customer->get_avatar_url();

Changelog

Since 3.0.0 Introduced.

WC_Customer::get_avatar_url() code WC 8.7.0

public function get_avatar_url() {
	return get_avatar_url( $this->get_email() );
}