Automattic\WooCommerce\Admin\Notes

Note::set_image()publicWC 1.0

Set note image.

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

Хуков нет.

Возвращает

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

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

$Note = new Note();
$Note->set_image( $image );
$image(строка) (обязательный)
Note image.

Код Note::set_image() WC 8.7.0

public function set_image( $image ) {
	$this->set_prop( 'image', $image );
}