20 lines
614 B
PHP
20 lines
614 B
PHP
<?php get_header(); ?>
|
|
|
|
<div id="primary" class="content-area">
|
|
<main id="main" class="site-main">
|
|
<?php
|
|
while (have_posts()) :
|
|
the_post();
|
|
?>
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
<h1 class="entry-title"><?php the_title(); ?></h1>
|
|
<div class="entry-content">
|
|
<?php the_content(); ?>
|
|
<?php echo do_shortcode('[checker id="'.get_the_ID().'"]'); ?>
|
|
</div>
|
|
</article>
|
|
<?php endwhile; ?>
|
|
</main>
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|