Skip to content

Action: bricks_after_footer

Runs after Bricks renders the footer and before the site wrapper closes. Use it when custom output needs to appear immediately after the footer template.

add_action( 'bricks_after_footer', function() {
echo '<div class="after-footer-note">Footer add-on output</div>';
} );