WordPress_MxDev/content-single.php
2025-08-16 20:29:04 -04:00

10 lines
335 B
PHP

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
<?php the_post_thumbnail(); // Moved this line down ?>
</header>
<div class="entry-content">
<?php the_content(); ?>
</div>
</article>