# timetics/1.0.62/templates/meeting/custom-single-post-template.php

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

- Page: https://pluginprobe.com/plugins/timetics/1.0.62/code/templates/meeting/custom-single-post-template.php
- Raw: https://pluginprobe.com/plugins/timetics/1.0.62/raw/templates/meeting/custom-single-post-template.php
- Modified: 2026-02-18T13:42:46+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/custom-single-post-template.php#L10-L20`.

```php
<?php
/**
 * Single Meeting Template
 *
 * @package Timetics
 */

defined( 'ABSPATH' ) || exit;

 wp_head();
 $id = $post->ID;
 ?>
 <div class="timetics-single-page-wrapper">
        <div class="timetics-container">
            <?php
                if ( ! empty( $id ) ) {
                    echo do_shortcode( '[timetics-booking-form id=' . absint( $id ) . ']' );
                }
            ?>
        </div>
 </div> 
 <?php
 wp_footer();
```
