wordpress-zerro/template/post/content.php

9 lines
193 B
PHP
Raw 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">';
echo "<h1>", the_title(), "</h1>";
the_content();
echo '</div>';
?>
</article>