Created
June 7, 2013 16:58
-
-
Save intelliweb/5730717 to your computer and use it in GitHub Desktop.
Builder blank page content template using the builder_layout_engine_render_content hook
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
<?php | |
/*Template Name: Blank */ | |
function render_content() { | |
//CODE and INFORMATION GOES IN THIS FUNCTION | |
} | |
add_action( 'builder_layout_engine_render_content', 'render_content' ); | |
do_action( 'builder_layout_engine_render', basename( __FILE__ ) ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment