WC_Customer::get_avatar_url()publicWC 3.0.0

Return this customer's avatar.

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

Хуков нет.

Возвращает

Строку.

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

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

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

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

Код WC_Customer::get_avatar_url() WC 8.7.0

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