block-templates.php
1 year ago
class-templates-list-table.php
2 years ago
default-template-types.php
7 months ago
full-site-editing.php
1 year ago
get-block-templates.php
1 year ago
template-loader.php
1 year ago
template-parts.php
1 month ago
templates.php
1 month ago
template-parts.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | function kubio_render_block_template_part( $block, $slug, $style_ref = null ) { |
| 4 | return render_block( |
| 5 | array( |
| 6 | 'blockName' => $block, |
| 7 | 'attrs' => |
| 8 | array( |
| 9 | 'slug' => $slug, |
| 10 | 'theme' => get_stylesheet(), |
| 11 | 'kubio' => array( 'styleRef' => $style_ref ? $style_ref : "kubio-{$slug}" ), |
| 12 | |
| 13 | ), |
| 14 | 'innerBlocks' => array(), |
| 15 | 'innerHTML' => '', |
| 16 | 'innerContent' => array(), |
| 17 | ) |
| 18 | ); |
| 19 | } |
| 20 |