Automattic\WooCommerce\EmailEditor\Integrations\Core\Renderer\Blocks
List_Item::render_content
Renders the block content.
Method of the class: List_Item{}
No Hooks.
Returns
String.
Usage
// protected - for code of main (parent) or child class $result = $this->render_content( $block_content, $parsed_block, $rendering_context ): string;
- $block_content(string) (required)
- Block content.
- $parsed_block(array) (required)
- Parsed block.
- $rendering_context(Rendering_Context) (required)
- Rendering context.
List_Item::render_content() List Item::render content code WC 10.5.0
protected function render_content( $block_content, array $parsed_block, Rendering_Context $rendering_context ): string {
return $block_content;
}