40 lines
1.0 KiB
PHP
40 lines
1.0 KiB
PHP
<?php get_header(); ?>
|
|
|
|
|
|
<?php
|
|
$postType = get_post_type();
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="page-single page--single-<?php echo $postType; ?>" data-article-id="<?php echo get_the_ID(); ?>">
|
|
<?php if (have_posts()) : ?>
|
|
<?php while (have_posts()) : the_post(); ?>
|
|
<?php get_template_part('template-parts/components/posts/post-header'); ?>
|
|
|
|
<?php get_template_part('template-parts/components/posts/single-post-toolbar'); ?>
|
|
|
|
<div class="content-wrapper" data-active-tab="post">
|
|
<aside class="sidebar">
|
|
<?php get_template_part('template-parts/components/posts/post-tags'); ?>
|
|
</aside>
|
|
|
|
<div class="content-area">
|
|
<?php get_template_part('template-parts/components/posts/post-content', null, array(
|
|
'ID' => get_the_ID()
|
|
)); ?>
|
|
|
|
<?php get_template_part('template-parts/components/posts/post-authors', null, array(
|
|
'postId' => get_the_ID()
|
|
)); ?>
|
|
</div>
|
|
</div>
|
|
<?php endwhile; ?>
|
|
<?php endif; ?>
|
|
<?php echo do_blocks('<!-- wp:carhop-blocks/explore-tags /-->'); ?>
|
|
</div>
|
|
|
|
<?php
|
|
get_footer();
|