File Editor
Directories:
.. (Back)
css
functions
html5
img
inc
js
languages
page-templates
sections
Files:
404.php
comments.php
footer.php
functions.php
header.php
index.php
page.php
readme.txt
searchform.php
sidebar.php
single.php
style.css
Create New File
Create
Edit File: page.php
<?php /** * 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 wlow */ get_header(); ?> <main id="main" class="col-md-9" role="main"> <?php if (have_posts()) :?><?php while(have_posts()) : the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <div class="content-article"> <h1 class="huge margin-bottom"><?php the_title(); ?></h1> <?php if ( has_post_thumbnail() ) { ?> <?php the_post_thumbnail('wlow_single', array('class' => 'img-res','alt' => get_the_title())); ?> <?php } ?> <?php the_content(esc_html__('Read More...', 'wlow'));?> </div> </article> <?php endwhile; ?> <?php else : ?> <p><?php esc_html_e('Sorry, no posts matched your criteria.', 'wlow'); ?></p> <?php endif; ?> </main> <?php get_sidebar(); ?> <?php get_footer(); ?>
Save Changes
Rename File
Rename