# timetics/1.0.15/templates/meeting/category-template.php

Timetics – Appointment Booking Calendar &amp; Scheduling, version 1.0.15. 20 lines.

- Page: https://pluginprobe.com/plugins/timetics/1.0.15/code/templates/meeting/category-template.php
- Raw: https://pluginprobe.com/plugins/timetics/1.0.15/raw/templates/meeting/category-template.php
- Modified: 2023-12-25T16:12:56+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/timetics/1.0.15/code/templates/meeting/category-template.php#L10-L20`.

```php
<?php
/**
 * Template Name: Custom Archive Template
 */
 
 wp_head();
 $category = get_queried_object();
 
 ?>
 <div class="timetics-single-page-wrapper timetics-category-meeting">
    <div class="timetics-container">
            <?php
                if(!empty($category)){ 
                    echo do_shortcode('[timetics-category id='.$category->term_id.']');
                }
            ?>
    </div>
 </div> 
 <?php
  wp_footer();
```
