| @@ -15,25 +15,28 @@ | ||
| 15 | 15 | |
| 16 | 16 | do_action( 'rtsb/builder/before/header' ); |
| 17 | 17 | |
| 18 | 18 | if ( Fns::check_is_block_theme() ) { ?> |
| 19 | - <!doctype html> | |
| 20 | - <html <?php language_attributes(); ?>> | |
| 21 | - <head> | |
| 22 | - <meta charset="<?php bloginfo( 'charset' ); ?>"> | |
| 23 | - <?php wp_head(); ?> | |
| 24 | - </head> | |
| 25 | - <body <?php body_class(); ?>> | |
| 26 | - <?php wp_body_open(); ?> | |
| 27 | - <div class="wp-site-blocks"> | |
| 28 | - <?php | |
| 29 | - echo do_blocks( '<!-- wp:template-part {"slug":"header","theme":"' . esc_attr( rtsb()->current_theme ) . '","tagName":"header","className":"site-header"} /-->' ); | |
| 19 | + <!doctype html> | |
| 20 | + <html <?php language_attributes(); ?>> | |
| 21 | + <head> | |
| 22 | + <meta charset="<?php bloginfo( 'charset' ); ?>"> | |
| 23 | + <?php wp_head(); ?> | |
| 24 | + </head> | |
| 25 | + <body <?php body_class(); ?>> | |
| 26 | + <?php wp_body_open(); ?> | |
| 27 | + <div class="wp-site-blocks"> | |
| 28 | + <?php | |
| 29 | + Fns::print_html( do_blocks( '<!-- wp:template-part {"slug":"header","theme":"' . esc_attr( rtsb()->current_theme ) . '","tagName":"header","className":"site-header"} /-->' ), true ); | |
| 30 | 30 | } else { |
| 31 | - get_header( 'shop' ); | |
| 31 | + get_header( 'shop' ); | |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | +$parent_class = apply_filters( 'rtsb/builder/wrapper/parent_class', [] ); | |
| 35 | +$type = apply_filters( 'rtsb/builder/set/current/page/type', '' ); | |
| 34 | 36 | |
| 35 | -$parent_class = apply_filters( 'rtsb/builder/wrapper/parent_class', [] ); | |
| 37 | +do_action( 'rtsb/builder/after/header' ); | |
| 38 | + | |
| 36 | 39 | ?> |
| 37 | 40 | <div id="rtsb-builder-content" class="rtsb-builder-content content-invisible <?php echo esc_attr( implode( ' ', $parent_class ) ); ?>"> |
| 38 | 41 | <?php |
| 39 | 42 | do_action( 'rtsb/builder/template/before/content' ); |
| @@ -49,12 +52,12 @@ | ||
| 49 | 52 | <?php |
| 50 | 53 | do_action( 'rtsb/builder/before/footer' ); |
| 51 | 54 | |
| 52 | 55 | if ( Fns::check_is_block_theme() ) { |
| 53 | - echo do_blocks( '<!-- wp:template-part {"slug":"footer","theme":"' . esc_attr( rtsb()->current_theme ) . '","tagName":"footer","className":"site-footer"} /-->' ); | |
| 54 | - echo '</div>'; | |
| 55 | - wp_footer(); | |
| 56 | - echo '</body>'; | |
| 57 | - echo '</html>'; | |
| 56 | + Fns::print_html( do_blocks( '<!-- wp:template-part {"slug":"footer","theme":"' . esc_attr( rtsb()->current_theme ) . '","tagName":"footer","className":"site-footer"} /-->' ), true ); | |
| 57 | + echo '</div>'; | |
| 58 | + wp_footer(); | |
| 59 | + echo '</body>'; | |
| 60 | + echo '</html>'; | |
| 58 | 61 | } else { |
| 59 | - get_footer( 'shop' ); | |
| 62 | + get_footer( 'shop' ); | |
| 60 | 63 | } |