-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patharchive-products.php
51 lines (40 loc) · 1.55 KB
/
archive-products.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
<?php get_header(); ?>
<div class="container">
<section class="product-header text-center">
<a href="<?php echo get_post_type_archive_link( 'products' ); ?>"><h1 class="product-page-title">Products & Services</h1></a>
<hr>
</section>
<div class="row">
<section class="product-list">
<!--product-list-->
<div class="grid">
<div class="grid-sizer col-md-3 col-sm-6 col-xs-12"></div>
<?php if(have_posts()) : while(have_posts()) : the_post();?>
<div class="grid-item col-md-3 col-sm-6 col-xs-12">
<div class="product-list-item">
<!--product-list-item-->
<div class="product-thumbnail">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( 'banner-image', array( 'class' => 'img-responsive' ) ); ?></a>
</div>
<div class="product-description">
<a href="<?php the_permalink(); ?>"><h5><?php the_title(); ?></h5></a>
<hr>
<p>
<?php the_content('Read More...'); ?>
</p>
</div>
<!--/product-list-item-->
</div>
</div>
<?php endwhile;
else : echo '<p>No content found</p>';
endif;?>
</div>
<div class="pager">
<?php echo paginate_links(); ?>
</div>
<!--/product-list-->
</section>
</div>
</div>
<?php get_footer(); ?>