Make WordPress Themes

source: lightning/6.10.3/woocommerce.php

Last change on this file was 110849, checked in by themedropbox, 7 years ago

New version of Lightning - 6.10.3

File size: 1.4 KB
Line 
1<?php get_header(); ?>
2
3<?php get_template_part( 'module_pageTit' ); ?>
4<?php get_template_part( 'module_panList' ); ?>
5
6<div class="section siteContent">
7<div class="container">
8<div class="row">
9
10<div class="col-md-8 mainSection" id="main" role="main">
11
12        <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
13        <?php do_action( 'ligthning_entry_body_before' ); ?>
14        <div class="entry-body">
15        <?php woocommerce_content(); ?>
16        </div>
17        <?php
18        $args = array(
19                'before'      => '<nav class="page-link"><dl><dt>Pages :</dt><dd>',
20                'after'       => '</dd></dl></nav>',
21                'link_before' => '<span class="page-numbers">',
22                'link_after'  => '</span>',
23                'echo'        => 1,
24        );
25        wp_link_pages( $args );
26        ?>
27
28        <?php
29                /**
30                 * woocommerce_after_main_content hook.
31                 *
32                 * @hooked woocommerce_output_content_wrapper_end - 10 (outputs closing divs for the content)
33                 */
34                // do_action( 'woocommerce_after_main_content' );
35        ?>
36        </div><!-- [ /#post-<?php the_ID(); ?> ] -->
37
38
39
40</div><!-- [ /.mainSection ] -->
41
42<div class="col-md-3 col-md-offset-1 subSection sideSection">
43        <?php
44                /**
45                 * woocommerce_sidebar hook.
46                 *
47                 * @hooked woocommerce_get_sidebar - 10
48                 */
49                do_action( 'woocommerce_sidebar' );
50        ?>
51<?php get_sidebar( get_post_type() ); ?>
52</div><!-- [ /.subSection ] -->
53
54</div><!-- [ /.row ] -->
55</div><!-- [ /.container ] -->
56</div><!-- [ /.siteContent ] -->
57<?php get_footer(); ?>
Note: See TracBrowser for help on using the repository browser.