Skip to content

Instantly share code, notes, and snippets.

@grantambrose
Last active August 21, 2016 18:58
Show Gist options
  • Save grantambrose/4272f590111ef120c68ce6b1afafd53c to your computer and use it in GitHub Desktop.
Save grantambrose/4272f590111ef120c68ce6b1afafd53c to your computer and use it in GitHub Desktop.
How to use the hooks in the Beaver Builder Theme for WordPress
add_action( 'fl_after_content', 'my_function_name' );
function my_function_name() {
if(is_front_page() || is_single()){
echo do_shortcode('[fl_builder_insert_layout slug="footer-columns"]');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment