-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
30 lines (19 loc) · 773 Bytes
/
page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php get_header(); ?>
<main class="container">
<?php while ( have_posts() ) : the_post(); ?>
<article class="post page" id="pageid-<?php the_ID(); ?>">
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<div class="entry-box clearfix">
<?php do_action( 'basic_after_page_content' ); ?>
</article>
<?php
if ( comments_open() || get_comments_number() ) {
do_action( 'basic_before_page_comments_area' );
comments_template();
do_action( 'basic_after_page_comments_area' );
}
endwhile; ?>
</main> <!-- #content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>