-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtpm_widget_category.tpl.php
More file actions
executable file
·25 lines (18 loc) · 1.04 KB
/
tpm_widget_category.tpl.php
File metadata and controls
executable file
·25 lines (18 loc) · 1.04 KB
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
<?php include('includes/getMarketplace.inc.php');?>
<?php if (isset($marketplace_categories) AND !empty($marketplace_categories)): ?>
<!-- The shortcode for this page is [tpm-widget-winkelen] -->
<div class="tpm-widget-category-wrapper">
<div class="tpm-subhead">Categories</div>
<div class="tpm-dotted"></div>
<div class="tpm-categories clearfix">
<?php foreach($marketplace_categories as $category) : ?>
<div class="tpm-category <?php echo $category->title; ?><?php if ($marketplace_terms==$category->category_id) {echo ' selected';}?>">
<a href="<?php echo bloginfo('url'); ?>/<?php echo TPM_PATH_MARKETPLACE; ?>/<?php echo TPM_PATH_SHOPPING; ?>/?category=<?php echo $category->category_id; ?>">
<?php echo $category->title; ?></a>
</div>
<?php endforeach;?>
</div>
<div class="tpm-more"><a href="<?php echo bloginfo('url'); ?>/<?php echo TPM_PATH_MARKETPLACE; ?>/<?php echo TPM_PATH_SHOPPING; ?>">View all</a></div>
<div class="clearfix"></div>
</div>
<?php endif; ?>