wordpress-zerro/template/post/content.php

9 lines
201 B
PHP
Raw Permalink Normal View History

2020-03-13 18:23:34 +08:00
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php
echo '<div class="content">';
2023-12-09 16:39:41 +08:00
echo "<h1># ", the_title(), "</h1><hr />";
2020-03-13 18:23:34 +08:00
the_content();
echo '</div>';
?>
</article>