Automattic\WooCommerce\EmailEditor\Integrations\Core\Renderer\Blocks

List_Item::add_spacerprotectedWC 1.0

Override this method to disable spacing (block gap) for list items.

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

Хуков нет.

Возвращает

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

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->add_spacer( $content, $email_attrs ): string;
$content(строка) (обязательный)
Content.
$email_attrs(массив) (обязательный)
Email attributes.

Код List_Item::add_spacer() WC 10.0.2

protected function add_spacer( $content, $email_attrs ): string {
	return $content;
}