Skip to content

Action: bricks_after_header

Runs after Bricks renders the header template. Use it for output or setup that should happen directly after the site header.

add_action( 'bricks_after_header', function() {
echo '<div class="after-header-banner">Announcement</div>';
} );