Last active
May 18, 2024 13:16
-
-
Save jstask82/ec69915874aa4e72a4c42b3402a14a72 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function mb_block_renderer($attributes, $block) | |
{ | |
$context = Timber::context(); | |
$context['attributes'] = $attributes; | |
$context['is_preview'] = defined('REST_REQUEST') && REST_REQUEST; | |
$context['post_id'] = get_the_ID(); | |
$context['PREFIX'] = PREFIX; | |
$block_name = end(explode('/', $block->name)); | |
Timber::render("blocks/{$block_name}.twig", $context); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment