-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsingle.php
54 lines (35 loc) · 1016 Bytes
/
single.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
46
47
48
49
50
51
52
53
54
<?php
/**
* The template for displaying all single posts.
*/
get_header(); ?>
<!-- Wrapper start -->
<div class="main">
<!-- Post single start -->
<section class="page-module-content module">
<div class="container">
<div class="row">
<!-- Content column start -->
<div class="col-sm-8">
<?php while ( have_posts() ) : the_post(); ?>
<?php
do_action( 'shop_isle_single_post_before' );
get_template_part( 'content', 'single' );
/**
* @hooked shop_isle_post_nav - 10
*/
do_action( 'shop_isle_single_post_after' );
?>
<?php endwhile; // end of the loop. ?>
</div>
<!-- Content column end -->
<!-- Sidebar column start -->
<div class="col-xs-12 col-sm-4 col-md-3 col-md-offset-1 sidebar">
<?php do_action( 'shop_isle_sidebar' ); ?>
</div>
<!-- Sidebar column end -->
</div><!-- .row -->
</div>
</section>
<!-- Post single end -->
<?php get_footer(); ?>