File "page.php"
Full path: /home/dora/public_html/wp-content/themes/bricks/page.php
File size: 327 bytes
MIME-type: --
Charset: utf-8
<?php
get_header();
$bricks_data = Bricks\Helpers::get_bricks_data( get_the_ID(), 'content' );
if ( $bricks_data ) {
Bricks\Frontend::render_content( $bricks_data );
} else {
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/page' );
endwhile;
endif;
}
get_footer();