block_template_part()
Prints a block template part.
No Hooks.
Returns
null. Nothing (null).
Usage
block_template_part( $part );
- $part(string) (required)
- The block template part to print, for example
'header'or'footer'.
Changelog
| Since 5.9.0 | Introduced. |
block_template_part() block template part code WP 7.0
function block_template_part( $part ) {
$template_part = get_block_template( get_stylesheet() . '//' . $part, 'wp_template_part' );
if ( ! $template_part || empty( $template_part->content ) ) {
return;
}
echo do_blocks( $template_part->content );
}