wordpress-zerro/template/post/content-page.php
2023-12-09 16:39:41 +08:00

9 lines
201 B
PHP

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php
echo '<div class="content">';
echo "<h1># ", the_title(), "</h1><hr />";
the_content();
echo '</div>';
?>
</article>