Make WordPress Themes

source: flixita/1.0.94/fullwidth-page.php

Last change on this file was 198763, checked in by themedropbox, 2 years ago

New theme: Flixita - 1.0

File size: 567 bytes
Line 
1<?php 
2/**
3 *
4 * Template Name: Full Width Page
5 *
6 * Displays the Full Width page.
7 *
8 * @package flixita
9 */
10 
11get_header();
12get_template_part('/template-parts/site', 'breadcrumb');
13?>
14<section class="flixita-page st-py-default">
15        <div class="container">
16                <div class="row row-cols-1 gy-5 wow fadeInUp">
17                        <div class="col">
18                                <?php the_post(); the_content(); 
19                                        if( $post->comment_status == 'open' ) { 
20                                                 comments_template( '', true ); // show comments
21                                        }
22                                ?>
23                        </div>
24                </div>
25        </div>
26</section>
27<?php get_footer(); ?>
Note: See TracBrowser for help on using the repository browser.