Skip to content

Instantly share code, notes, and snippets.

@psahalot
Created November 20, 2016 13:14
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 psahalot/ca04d9afbb770009251d54c5866f055d to your computer and use it in GitHub Desktop.
Save psahalot/ca04d9afbb770009251d54c5866f055d to your computer and use it in GitHub Desktop.
Beaver Builder Theme Hook Example
<?php
// Create a function with content
// that you would like to display.
function bb_hook_example() {
echo "Hello World";
}
// Put it at the correct place
add_action('fl_page_open', 'bb_hook_example');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment