Skip to content

Action: render_header

Runs in header.php between bricks_before_header and bricks_after_header.

Bricks attaches its frontend header renderer to this action by default. Use this hook only when you need to add low-level output at the header render position. To modify the generated header HTML, use the bricks/render_header filter instead.

add_action( 'render_header', function() {
echo '<div class="after-render-header"></div>';
}, 20 );