-
Notifications
You must be signed in to change notification settings - Fork 0
/
woocommerce.php
executable file
·47 lines (33 loc) · 1.09 KB
/
woocommerce.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
<?php
/**
* Basic WooCommerce support
*
* @package Semantique
* @since Semantique 1.0.0
*/
get_header(); ?>
<!-- nominal classname -->
<div class="full-width mainthing" role="main">
<?php do_action( 'semantique_before_content' ); ?>
<?php while ( woocommerce_content() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class('main-content') ?> >
<header>
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
<?php do_action( 'semantique_page_before_entry_content' ); ?>
<div class="entry-content">
<?php the_content(); ?>
</div>
<footer>
<?php wp_link_pages( array('before' => '<nav class="page-nav" id="page-nav"><p>' . __( 'Pages:', 'semantique' ), 'after' => '</p></nav>' ) ); ?>
<p><?php the_tags(); ?></p>
</footer>
<?php do_action( 'semantique_page_before_comments' ); ?>
<?php comments_template(); ?>
<?php do_action( 'semantique_page_after_comments' ); ?>
</article>
<?php endwhile;?>
<?php do_action( 'semantique_after_content' ); ?>
</div> <!-- /mainthing -->
<?php get_sidebar(); ?>
<?php get_footer();