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

Timetics – Appointment Booking Calendar &amp; Scheduling, version 1.0.62. 22 lines.

- Page: https://pluginprobe.com/plugins/timetics/1.0.62/code/templates/meeting/category-template.php
- Raw: https://pluginprobe.com/plugins/timetics/1.0.62/raw/templates/meeting/category-template.php
- Modified: 2026-04-24T05:33:32+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.62/code/templates/meeting/category-template.php#L10-L20`.

```php
<?php
/**
 * Template Name: Custom Archive Template
 */

defined( 'ABSPATH' ) || exit;

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