Page Hero – insert a template like

  • Hi Team GP,
    im trying to achieve – insert a template (<!– wp:block {“ref”:4879} /–>) into a Page Hero Section. Page Hero (and not Blocks) cause i need merged with navi and full image.
    When I do this, the template part is below the page hero. So is there a way to bring this block in the middle of the first screen?
    WP 7, GP Premium, GB Pro
    Thanks in advance.

  • Got it,
    make it a shortcode

    add_shortcode('render_hero_block', function() {
        $block_id = 4879; // Deine Block-ID
        $block = get_post($block_id);
        if ($block) {
            return do_blocks($block->post_content);
        }
        return '';
    });

    and add shortcode to page-hero
    [render_hero_block]

  • Glad to hear that 🙂

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.