Automattic\WooCommerce\Blocks\BlockTypes

Wishlist::render_item_markupprivateWC 1.0

Render a single SSR item. Composes the shared image / name / price markup with the Wishlist-specific "Add to cart" button.

Method of the class: Wishlist{}

No Hooks.

Returns

String.

Usage

// private - for code of main (parent) class only
$result = $this->render_item_markup( $item ): string;
$item(array) (required)
.

Wishlist::render_item_markup() code WC 10.9.1

private function render_item_markup( array $item ): string {
	$row_inner = ShopperListRenderer::render_ssr_common_row( $item, $this->get_remove_label_template() )
		. $this->render_ssr_add_to_cart( $item );
	return ShopperListRenderer::render_each_child( $item, $row_inner );
}