For the complete documentation index, see llms.txt. This page is also available as Markdown.

Template

This block type renders a template.

Parameters

  • template - the name of a template to render.

Example

The code below renders the Listings page template.

echo ( new HivePress\Blocks\Template(
	[
		'template' => 'listings_view_page',
	]
) )->render();

Last updated