Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Generate CSS for Generate Block used outside of the page
<?php
add_filter('generateblocks_do_content', function ($content) {
$part = 'page-header';
$template_part = get_block_template(get_stylesheet() . '//' . $part, 'wp_template_part');
if ($extra = $template_part->content) {
$content = $extra . $content;
}
return $content;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment