Skip to content

Action: bricks_after_site_wrapper

Runs in footer.php after bricks_after_footer and before wp_footer().

In the builder, Bricks uses this hook to close the .brx-body wrapper. On the frontend, Bricks also uses this position for one page navigation output when that page setting is enabled.

add_action( 'bricks_after_site_wrapper', function() {
echo '</div><!-- .before-site-wrapper -->';
} );