Automattic\WooCommerce\Blocks\BlockTypes
Wishlist::render_item_markup
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() 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 );
}