-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
45 lines (29 loc) · 884 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php get_header(); ?>
<?php get_template_part('template','header'); ?>
<?php ocart_display_super_nav() ?>
<div id="blog">
<div class="wrap">
<div class="blog_title">
<h1><?php echo single_post_title(); ?></h1>
<a href="<?php echo home_url(); ?>/" class="blog_store"><?php _e('Back to Store','ocart'); ?></a>
</div>
<div class="blog_wrap">
<div class="blog_content">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="page-pad">
<div class="post-content">
<?php the_content(); ?>
</div>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
</div>
</div>
<?php get_template_part('template','footer'); ?>
<?php get_footer(); ?>