Files
Minecraft-Modern-Theme/Minecraft-Modern-Theme/single.php

20 lines
681 B
PHP

<?php get_header(); ?>
<main id="primary" class="site-main">
<div class="container">
<div class="content-area">
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>>
<div class="post-content">
<h1 class="post-title"><?php the_title(); ?></h1>
<div class="post-entry">
<?php the_content(); ?>
</div>
</div>
</article>
<?php endwhile; ?>
</div>
</div>
</main>
<?php get_footer(); ?>