File Editor
Directories:
.. (Back)
img
inc
js
languages
layouts
Files:
404.php
README.txt
archive.php
comments.php
footer.php
front-page.php
functions.php
header.php
home.php
index.php
page-left-sidebar.php
page.php
search.php
sidebar.php
single.php
style.css
template-blog-default.php
template-blog-grid-sidebar.php
template-blog-grid.php
woocommerce.php
Create New File
Create
Edit File: 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 will use a * different template. * * @package mediaphase */ get_header(); get_template_part( 'inc/partials/content', 'inner-navigation' ); ?> <div id="main"> <div class="wrap"> <?php get_sidebar(); while ( have_posts() ) : the_post(); get_template_part( 'inc/partials/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; ?> </div> </div> <?php get_template_part( 'inc/partials/content', 'home-bottom-ribbon' ); get_template_part( 'inc/partials/content', 'home-logos' ); get_footer();
Save Changes
Rename File
Rename