-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive-orbis_product.php
69 lines (55 loc) · 1.58 KB
/
archive-orbis_product.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php get_header(); ?>
<header class="section-header clearfix">
<a class="btn btn-primary pull-right" href="<?php echo esc_url( orbis_get_url_post_new() ); ?>">
<span class="glyphicon glyphicon-plus"></span> <?php _e( 'Add product', 'orbis' ); ?>
</a>
</header>
<div class="panel">
<?php get_template_part( 'templates/search_form' ); ?>
<?php if ( have_posts() ) : ?>
<div class="table-responsive">
<table class="table table-striped table-condense table-hover">
<thead>
<tr>
<th><?php _e( 'Title', 'orbis' ); ?></th>
<th><?php _e( 'Price', 'orbis' ); ?></th>
<th></th>
</tr>
</thead>
<tbody>
<?php while ( have_posts() ) : the_post(); ?>
<tr id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<td>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php if ( get_comments_number() != 0 ) : ?>
<div class="comments-number">
<span class="glyphicon glyphicon-comment"></span>
<?php comments_number( '0', '1', '%' ); ?>
</div>
<?php endif; ?>
</td>
<td>
<?php orbis_product_the_price(); ?>
</td>
<td>
<div class="actions">
<div class="nubbin">
<?php orbis_edit_post_link(); ?>
</div>
</div>
</td>
</tr>
<?php endwhile; ?>
</tbody>
</table>
</div>
<?php else : ?>
<div class="content">
<p class="alt">
<?php _e( 'No results found.', 'orbis' ); ?>
</p>
</div>
<?php endif; ?>
</div>
<?php orbis_content_nav(); ?>
<?php get_footer(); ?>