File "page.php"
Full Path: /websites/hqoliveoil/site/wp-content/themes/fairy/page.php
File size: 2.3 KB
MIME-type: text/x-php
Charset: utf-8
<?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://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package fairy
*/
get_header();
?>
<main class="site-main">
<section class="single-section sec-spacing">
<div class="container">
<?php
$sidebar_options = esc_attr($fairy_theme_options['fairy-sidebar-single-page']);
global $post;
$single_sidebar = get_post_meta($post->ID, 'fairy_sidebar_layout', true);
if (('default-sidebar' != $single_sidebar) && (!empty($single_sidebar))) {
$sidebar_options = $single_sidebar;
}
$sidebar_class = '';
if ($sidebar_options == 'left-sidebar') {
$sidebar_class = 'row-inverse-md';
} elseif ($sidebar_options == 'no-sidebar') {
$sidebar_class = 'row-full-width';
} elseif ($sidebar_options == 'middle-column') {
$sidebar_class = 'row-center-col';
}
?>
<div class="row <?php echo esc_attr($sidebar_class); ?>">
<div id="primary" class="col-1-1 col-md-2-3">
<?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.
?>
</div>
<?php
if (($sidebar_options == 'left-sidebar') || ($sidebar_options == 'right-sidebar')) {
?>
<div id="secondary" class="col-12 col-md-1-3 col-lg-1-3">
<?php get_sidebar(); ?>
</div>
<?php
}
?>
</div>
</div>
</section>
</main><!-- #main -->
<?php
get_footer();