| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template Name: Custom Archive Template |
| 4 |
*/ |
| 5 |
|
| 6 |
defined( 'ABSPATH' ) || exit; |
| 7 |
|
| 8 |
wp_head(); |
| 9 |
$timetics_category = get_queried_object(); |
| 10 |
|
| 11 |
?> |
| 12 |
<div class="timetics-single-page-wrapper timetics-category-meeting"> |
| 13 |
<div class="timetics-container"> |
| 14 |
<?php |
| 15 |
if ( ! empty( $timetics_category ) ) { |
| 16 |
echo do_shortcode( '[timetics-category id=' . absint( $timetics_category->term_id ) . ']' ); |
| 17 |
} |
| 18 |
?> |
| 19 |
</div> |
| 20 |
</div> |
| 21 |
<?php |
| 22 |
wp_footer(); |