Skip to content

Action: render_footer

Runs in footer.php between bricks_before_footer and bricks_after_footer.

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

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