Skip to content

Action: bricks_body

Runs in header.php after the document head closes and before the site-wrapper and header hooks.

Bricks attaches its opening <body> tag callback to this hook at priority 1. Default-priority callbacks run after the opening body tag and after Bricks has printed body-start scripts and skip links.

add_action( 'bricks_body', function() {
echo '<div id="body-integration-root"></div>';
} );