forked from OpenDevelopmentMekong/wp-odm_theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
29 lines (25 loc) · 671 Bytes
/
page.php
File metadata and controls
29 lines (25 loc) · 671 Bytes
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
<?php get_header(); ?>
<!-- //cookie -->
<?php if(have_posts()) : the_post(); ?>
<section class="container section-title main-title">
<header class="row">
<div class="sixteen columns">
<h1><?php the_title(); ?></h1>
</div>
</header>
</section>
<section class="container">
<div class="sixteen columns">
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'odm' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
) );
?>
</div>
</section>
<?php endif; ?>
<?php get_footer(); ?>