D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
vblioqus
/
apkstacker.com
/
wp-content
/
themes
/
infopediya
/
Filename :
page.php
back
Copy
<?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 Files_Custom_Theme */ get_header() ?> <div id="primary" class="content-area container bg-white"> <main id="main" class="page-main-m pl-0 col-md-12 pr-0"> <div class="post-breadcrumbs"> <div class="breadcrumbs" typeof="BreadcrumbList" vocab="http://schema.org/"> <?php if (function_exists('bcn_display')) { bcn_display(); } ?> </div> </div> <div class="page-content row ml-0 mr-0"> <?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> </main><!-- #main --> </div><!-- #primary --> <?php get_footer();