Closed themeblvd closed 6 years ago
These will encompass the entire header and footer.
The function themeblvd_header_default() hooked to themeblvd_header will:
themeblvd_header_default()
themeblvd_header
do_action( 'themeblvd_header_before' );
<div id="top">
content-header.php
</div><!-- #top -->
do_action( 'themeblvd_header_after' );
The function themeblvd_footer_default() hooked to themeblvd_footer will:
themeblvd_footer_default()
themeblvd_footer
do_action( 'themeblvd_footer_before' );
<div id="custom-bottom">
do_action( 'themeblvd_builder_content', 'footer' );
</div><!-- #custom-bottom -->
<div id="bottom">
content-footer.php
</div><!-- #bottom -->
do_action( 'themeblvd_footer_after' );
These will encompass the entire header and footer.
The function
themeblvd_header_default()
hooked tothemeblvd_header
will:do_action( 'themeblvd_header_before' );
<div id="top">
content-header.php
template part.</div><!-- #top -->
do_action( 'themeblvd_header_after' );
The function
themeblvd_footer_default()
hooked tothemeblvd_footer
will:do_action( 'themeblvd_footer_before' );
<div id="custom-bottom">
do_action( 'themeblvd_builder_content', 'footer' );
</div><!-- #custom-bottom -->
<div id="bottom">
content-footer.php
template part.</div><!-- #bottom -->
do_action( 'themeblvd_footer_after' );