File: /var/www/vfconf/wp-content/themes/event-star/page.php
<?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site may use a
* different template.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Acme Themes
* @subpackage Event Star
*/
get_header();
$event_star_customizer_all_values = event_star_get_theme_options();
$event_star_hide_front_page_header = $event_star_customizer_all_values['event-star-hide-front-page-header'];
if (
( is_front_page() && 1 != $event_star_hide_front_page_header )
|| ! is_front_page()
) {
?>
<div class="wrapper inner-main-title">
<div class="container">
<header class="entry-header init-animate">
<?php
the_title( '<h1 class="entry-title">', '</h1>' );
if ( 1 == $event_star_customizer_all_values['event-star-show-breadcrumb'] ) {
event_star_breadcrumbs();
}
?>
</header><!-- .entry-header -->
</div>
</div>
<?php
}
?>
<div id="content" class="site-content container clearfix">
<?php
$sidebar_layout = event_star_sidebar_selection( get_the_ID() );
if ( 'both-sidebar' == $sidebar_layout ) {
echo '<div id="primary-wrap" class="clearfix">';
}
?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'page' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
?>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_sidebar( 'left' );
get_sidebar();
if ( 'both-sidebar' == $sidebar_layout ) {
echo '</div>';
}
?>
</div><!-- #content -->
<?php
get_footer();