Skip to content

Instantly share code, notes, and snippets.

@aguilar1181
Created December 7, 2022 01:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aguilar1181/98dbb7847faba48b866765a2d379c26b to your computer and use it in GitHub Desktop.
Save aguilar1181/98dbb7847faba48b866765a2d379c26b to your computer and use it in GitHub Desktop.
It adds an element righ after the <body> openning tag using Bricks builder own action.
<?php
/**
* It adds an element righ after the <body> openning tag
* using Bricks builder own action.
*/
add_action( 'bricks_body', 'my_body_open_tag', 0 );
function my_body_open_tag() {
echo 'my own tag here';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment