Last active
August 21, 2016 18:58
-
-
Save grantambrose/4272f590111ef120c68ce6b1afafd53c to your computer and use it in GitHub Desktop.
How to use the hooks in the Beaver Builder Theme for WordPress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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